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