Microsoft Azure · Schema

onYourDataVectorizationSource

An abstract representation of a vectorization source for Azure OpenAI On Your Data with vector search.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
type object
View JSON Schema on GitHub

JSON Schema

microsoft-azure-onyourdatavectorizationsource-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/onYourDataVectorizationSource",
  "title": "onYourDataVectorizationSource",
  "required": [
    "type"
  ],
  "type": "object",
  "properties": {
    "type": {
      "$ref": "#/components/schemas/onYourDataVectorizationSourceType"
    }
  },
  "description": "An abstract representation of a vectorization source for Azure OpenAI On Your Data with vector search.",
  "discriminator": {
    "propertyName": "type",
    "mapping": {
      "endpoint": "#/components/schemas/onYourDataEndpointVectorizationSource",
      "deployment_name": "#/components/schemas/onYourDataDeploymentNameVectorizationSource",
      "model_id": "#/components/schemas/onYourDataModelIdVectorizationSource"
    }
  }
}