vectorize_index-upsert-response

APIs.ioEngineeringPlatform

Properties

Name Type Description
count integer Specifies the count of the vectors successfully inserted.
ids array Array of vector identifiers of the vectors successfully inserted.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-vectorize-index-upsert-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/vectorize_index-upsert-response",
  "title": "vectorize_index-upsert-response",
  "properties": {
    "count": {
      "description": "Specifies the count of the vectors successfully inserted.",
      "example": 768,
      "type": "integer"
    },
    "ids": {
      "description": "Array of vector identifiers of the vectors successfully inserted.",
      "items": {
        "$ref": "#/components/schemas/vectorize_vector-identifier"
      },
      "type": "array"
    }
  },
  "type": "object"
}