Microsoft Azure · Schema

CreateEmbeddingResponse

Response from the embeddings API.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
object string The object type.
data array The list of embeddings generated.
model string The model used to generate the embeddings.
View JSON Schema on GitHub

JSON Schema

azure-openai-service-create-embedding-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CreateEmbeddingResponse",
  "type": "object",
  "description": "Response from the embeddings API.",
  "properties": {
    "object": {
      "type": "string",
      "description": "The object type."
    },
    "data": {
      "type": "array",
      "description": "The list of embeddings generated."
    },
    "model": {
      "type": "string",
      "description": "The model used to generate the embeddings."
    }
  }
}