Pinecone · Schema

TextReferenceModel

Represents a reference to a part of a text document.

Vector DatabasesAIEmbeddingsRAG

Properties

Name Type Description
type string The type of reference. Always "text".
file object
View JSON Schema on GitHub

JSON Schema

pinecone-textreferencemodel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TextReferenceModel",
  "title": "TextReferenceModel",
  "description": "Represents a reference to a part of a text document.",
  "type": "object",
  "properties": {
    "type": {
      "description": "The type of reference. Always \"text\".",
      "type": "string"
    },
    "file": {
      "$ref": "#/components/schemas/AssistantFileModel"
    }
  },
  "required": [
    "type",
    "file"
  ]
}