Perplexity · Schema

ChatMessageContentTextChunk

Properties

Name Type Description
type string
text string
View JSON Schema on GitHub

JSON Schema

perplexity-chatmessagecontenttextchunk-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ChatMessageContentTextChunk",
  "title": "ChatMessageContentTextChunk",
  "properties": {
    "type": {
      "type": "string",
      "const": "text",
      "title": "Type"
    },
    "text": {
      "type": "string",
      "title": "Text"
    }
  },
  "type": "object",
  "required": [
    "type",
    "text"
  ]
}