Perplexity · Schema

FetchUrlTool

Properties

Name Type Description
max_urls integer Maximum number of URLs to fetch per tool call
type string
View JSON Schema on GitHub

JSON Schema

perplexity-fetchurltool-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FetchUrlTool",
  "title": "FetchUrlTool",
  "properties": {
    "max_urls": {
      "description": "Maximum number of URLs to fetch per tool call",
      "format": "int32",
      "maximum": 10,
      "minimum": 1,
      "type": "integer"
    },
    "type": {
      "enum": [
        "fetch_url"
      ],
      "type": "string"
    }
  },
  "required": [
    "type"
  ],
  "type": "object"
}