JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/access_okta",
"title": "Okta",
"allOf": [
{
"$ref": "#/components/schemas/access_identity-provider"
},
{
"properties": {
"config": {
"allOf": [
{
"$ref": "#/components/schemas/access_generic-oauth-config"
},
{
"$ref": "#/components/schemas/access_custom-claims-support"
},
{
"properties": {
"authorization_server_id": {
"description": "Your okta authorization server id",
"example": "aus9o8wzkhckw9TLa0h7z",
"type": "string"
},
"okta_account": {
"description": "Your okta account url",
"example": "https://dev-abc123.oktapreview.com",
"type": "string"
}
},
"type": "object"
}
]
}
},
"type": "object"
}
],
"type": "object"
}