Perplexity · Schema

ChatMessageContentPDFChunk

Properties

Name Type Description
type string
pdf_url object
View JSON Schema on GitHub

JSON Schema

perplexity-chatmessagecontentpdfchunk-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ChatMessageContentPDFChunk",
  "title": "ChatMessageContentPDFChunk",
  "properties": {
    "type": {
      "type": "string",
      "const": "pdf_url",
      "title": "Type"
    },
    "pdf_url": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/URL"
        },
        {
          "type": "string"
        }
      ],
      "title": "Pdf Url"
    }
  },
  "type": "object",
  "required": [
    "type",
    "pdf_url"
  ]
}