{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DcrProviderAzureAd", "title": "DCR provider - Azure AD", "description": "A DCR provider for Azure AD -- only properties not included in DcrProviderBase", "type": "object", "properties": { "provider_type": { "type": "string", "enum": [ "azureAd" ] }, "dcr_config": { "$ref": "#/components/schemas/DcrConfigAzureAdInResponse" } }, "required": [ "provider_type", "dcr_config" ] }