{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateDcrProviderRequestAzureAd", "title": "CreateDcrProviderRequestAzureAd", "description": "Request body for creating an Azure AD DCR provider.", "type": "object", "properties": { "provider_type": { "type": "string", "enum": [ "azureAd" ] }, "dcr_config": { "$ref": "#/components/schemas/CreateDcrConfigAzureAdInRequest" }, "name": { "$ref": "#/components/schemas/DcrProviderName" }, "display_name": { "$ref": "#/components/schemas/DcrProviderDisplayName" }, "issuer": { "type": "string", "format": "url", "maxLength": 256 }, "labels": { "$ref": "#/components/schemas/Labels" } }, "required": [ "provider_type", "dcr_config", "name", "issuer" ] }