Pinecone · Schema

DocxReferenceModel

Represents a reference to a part of a docx document.

Vector DatabasesAIEmbeddingsRAG

Properties

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

JSON Schema

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