Microsoft Azure · Schema

onYourDataConnectionStringAuthenticationOptions

The authentication options for Azure OpenAI On Your Data when using a connection string.

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

JSON Schema

microsoft-azure-onyourdataconnectionstringauthenticationoptions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/onYourDataConnectionStringAuthenticationOptions",
  "title": "onYourDataConnectionStringAuthenticationOptions",
  "required": [
    "connection_string"
  ],
  "description": "The authentication options for Azure OpenAI On Your Data when using a connection string.",
  "allOf": [
    {
      "$ref": "#/components/schemas/onYourDataAuthenticationOptions"
    },
    {
      "properties": {
        "connection_string": {
          "type": "string",
          "description": "The connection string to use for authentication."
        }
      }
    }
  ],
  "x-ms-discriminator-value": "connection_string"
}