{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/onYourDataApiKeyAuthenticationOptions", "title": "onYourDataApiKeyAuthenticationOptions", "required": [ "key" ], "description": "The authentication options for Azure OpenAI On Your Data when using an API key.", "allOf": [ { "$ref": "#/components/schemas/onYourDataAuthenticationOptions" }, { "properties": { "key": { "type": "string", "description": "The API key to use for authentication." } } } ], "x-ms-discriminator-value": "api_key" }