Pinecone · Schema

ListResponse

The response for the `list` operation.

Vector DatabasesAIEmbeddingsRAG

Properties

Name Type Description
vectors array
pagination object
namespace string The namespace of the vectors.
usage object
View JSON Schema on GitHub

JSON Schema

pinecone-listresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListResponse",
  "title": "ListResponse",
  "description": "The response for the `list` operation.",
  "type": "object",
  "properties": {
    "vectors": {
      "example": [
        {
          "id": "document1#abb"
        },
        {
          "id": "document1#abc"
        }
      ],
      "title": "A list of ids",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ListItem"
      }
    },
    "pagination": {
      "$ref": "#/components/schemas/Pagination"
    },
    "namespace": {
      "example": "example-namespace",
      "description": "The namespace of the vectors.",
      "type": "string"
    },
    "usage": {
      "$ref": "#/components/schemas/Usage"
    }
  }
}