Pinecone · Schema

MarkdownReferenceModel

Represents a reference to a part of a markdown document.

Vector DatabasesAIEmbeddingsRAG

Properties

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

JSON Schema

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