Perplexity · Schema

SearchResultsOutputItem

Properties

Name Type Description
queries array
results array
type string
View JSON Schema on GitHub

JSON Schema

perplexity-searchresultsoutputitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SearchResultsOutputItem",
  "title": "SearchResultsOutputItem",
  "properties": {
    "queries": {
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "results": {
      "items": {
        "$ref": "#/components/schemas/SearchResult"
      },
      "type": "array"
    },
    "type": {
      "enum": [
        "search_results"
      ],
      "type": "string"
    }
  },
  "required": [
    "type",
    "results"
  ],
  "type": "object"
}