{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AppAuthStrategyOpenIDConnectRequest", "title": "AppAuthStrategyOpenIDConnectRequest", "description": "Payload for creating an OIDC Application Auth Strategy", "type": "object", "properties": { "name": { "$ref": "#/components/schemas/AuthStrategyName" }, "display_name": { "$ref": "#/components/schemas/AuthStrategyDisplayName" }, "strategy_type": { "type": "string", "enum": [ "openid_connect" ] }, "configs": { "description": "JSON-B object containing the configuration for the OIDC strategy", "type": "object", "additionalProperties": false, "properties": { "openid-connect": { "$ref": "#/components/schemas/AppAuthStrategyConfigOpenIDConnect" } }, "required": [ "openid-connect" ] }, "dcr_provider_id": { "type": "string", "format": "uuid", "nullable": true }, "labels": { "$ref": "#/components/schemas/Labels" } }, "additionalProperties": false, "required": [ "name", "display_name", "strategy_type", "configs" ] }