Files
letro-authentication-service/policies/schema/authorization_grant_input.json

24 lines
468 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "AuthorizationGrantInput",
"type": "object",
"required": [
"authorization_grant",
"client",
"user"
],
"properties": {
"authorization_grant": {
"type": "object",
"additionalProperties": true
},
"client": {
"type": "object",
"additionalProperties": true
},
"user": {
"type": "object",
"additionalProperties": true
}
}
}