Pinecone · Schema

ReferenceModel

Describes a single reference in a citation.

Vector DatabasesAIEmbeddingsRAG

Properties

Name Type Description
file object
pages array
highlight object
View JSON Schema on GitHub

JSON Schema

pinecone-referencemodel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReferenceModel",
  "title": "ReferenceModel",
  "description": "Describes a single reference in a citation.",
  "type": "object",
  "properties": {
    "file": {
      "$ref": "#/components/schemas/AssistantFileModel"
    },
    "pages": {
      "type": "array",
      "items": {
        "type": "integer"
      }
    },
    "highlight": {
      "$ref": "#/components/schemas/HighlightModel"
    }
  }
}