object
-
client_idstring required -
enabledboolean required -
group_claimsarray of string -
issuerstring required -
redirect_uristring required -
scopesarray of string required
OpenAPI schema definition
{
"properties": {
"client_id": {
"type": "string"
},
"enabled": {
"type": "boolean"
},
"group_claims": {
"items": {
"type": "string"
},
"type": "array"
},
"issuer": {
"type": "string"
},
"redirect_uri": {
"type": "string"
},
"scopes": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"enabled",
"issuer",
"client_id",
"scopes",
"redirect_uri"
],
"type": "object"
}