vectorize_index-get-vectors-by-id-response

Array of vectors with matching ids.

APIs.ioEngineeringPlatform
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-vectorize-index-get-vectors-by-id-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/vectorize_index-get-vectors-by-id-response",
  "title": "vectorize_index-get-vectors-by-id-response",
  "description": "Array of vectors with matching ids.",
  "example": [
    {
      "id": "some-vector-id",
      "metadata": {
        "another-key": "another-value",
        "customer-id": 442
      },
      "values": [
        0.812,
        0.621,
        0.261
      ]
    },
    {
      "id": "other-vector-id",
      "metadata": {
        "another-key": "with-a-value",
        "customer-id": 2151
      },
      "namespace": "namespaced",
      "values": [
        0.961,
        0.751,
        0.661
      ]
    }
  ],
  "items": {
    "properties": {
      "id": {
        "$ref": "#/components/schemas/vectorize_vector-identifier"
      },
      "metadata": {
        "type": "object"
      },
      "namespace": {
        "nullable": true,
        "type": "string"
      },
      "values": {
        "items": {
          "type": "number"
        },
        "type": "array"
      }
    },
    "type": "object"
  },
  "type": "array"
}