Microsoft Azure · Schema

onYourDataAccessTokenAuthenticationOptions

The authentication options for Azure OpenAI On Your Data when using access token.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1
View JSON Schema on GitHub

JSON Schema

microsoft-azure-onyourdataaccesstokenauthenticationoptions-schema.json Raw ↑
{
  "$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"
}