JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/access_schemas-centrify",
"title": "Centrify",
"allOf": [
{
"$ref": "#/components/schemas/access_schemas-identity-provider"
},
{
"properties": {
"config": {
"allOf": [
{
"$ref": "#/components/schemas/access_generic-oauth-config"
},
{
"properties": {
"centrify_account": {
"description": "Your centrify account url",
"example": "https://abc123.my.centrify.com/",
"type": "string"
},
"centrify_app_id": {
"description": "Your centrify app id",
"example": "exampleapp",
"type": "string"
}
},
"type": "object"
}
]
}
},
"type": "object"
}
],
"type": "object"
}