From c423f308ce51b8d110ff80676084cf09488ebb0a Mon Sep 17 00:00:00 2001 From: Vine Brancho Date: Sat, 17 Jan 2015 22:59:23 +0900 Subject: [PATCH] add new property of Application model for oauth2.0 grant type * "grantType": ["string"] Array of 'grantType' property has to be one more of the followings. - authorization_code, implicit, password, client_credentials --- common/models/application.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/common/models/application.json b/common/models/application.json index 46213534..201b285c 100644 --- a/common/models/application.json +++ b/common/models/application.json @@ -30,6 +30,10 @@ "email": "string", "emailVerified": "boolean", + "grantType": { + "type": ["string"], + "description": "Grant type permitted to the application for OAuth 2.0" + }, "url": { "type": "string", "description": "The application URL for OAuth 2.0"