Perplexity · Schema

FetchUrlResultsOutputItem

Properties

Name Type Description
contents array
type string
View JSON Schema on GitHub

JSON Schema

perplexity-fetchurlresultsoutputitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FetchUrlResultsOutputItem",
  "title": "FetchUrlResultsOutputItem",
  "properties": {
    "contents": {
      "items": {
        "$ref": "#/components/schemas/UrlContent"
      },
      "type": "array"
    },
    "type": {
      "enum": [
        "fetch_url_results"
      ],
      "type": "string"
    }
  },
  "required": [
    "type",
    "contents"
  ],
  "type": "object"
}