Pinecone · Schema

PaginationResponse

The pagination object that is returned with paginated responses.

Vector DatabasesAIEmbeddingsRAG

Properties

Name Type Description
next string The token to use to retrieve the next page of results.
View JSON Schema on GitHub

JSON Schema

pinecone-paginationresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaginationResponse",
  "title": "PaginationResponse",
  "example": {
    "next": "dXNlcl9pZD11c2VyXzE="
  },
  "description": "The pagination object that is returned with paginated responses.",
  "type": "object",
  "properties": {
    "next": {
      "example": "dXNlcl9pZD11c2VyXzE=",
      "description": "The token to use to retrieve the next page of results.",
      "type": "string"
    }
  },
  "required": [
    "next"
  ]
}