vectorize_index-delete-vectors-by-id-response

APIs.ioEngineeringPlatform

Properties

Name Type Description
count integer The count of the vectors successfully deleted.
ids array Array of vector identifiers of the vectors that were successfully processed for deletion.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-vectorize-index-delete-vectors-by-id-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/vectorize_index-delete-vectors-by-id-response",
  "title": "vectorize_index-delete-vectors-by-id-response",
  "properties": {
    "count": {
      "description": "The count of the vectors successfully deleted.",
      "example": 42,
      "type": "integer"
    },
    "ids": {
      "description": "Array of vector identifiers of the vectors that were successfully processed for deletion.",
      "items": {
        "$ref": "#/components/schemas/vectorize_vector-identifier"
      },
      "type": "array"
    }
  },
  "type": "object"
}