{ "$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" } } }