Perplexity · Schema

InputContent

Message content - either a string or array of content parts

View JSON Schema on GitHub

JSON Schema

perplexity-inputcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InputContent",
  "title": "InputContent",
  "description": "Message content - either a string or array of content parts",
  "oneOf": [
    {
      "title": "StringContent",
      "type": "string"
    },
    {
      "items": {
        "$ref": "#/components/schemas/InputContentPart"
      },
      "title": "ContentPartArray",
      "type": "array"
    }
  ]
}