Perplexity · Schema

FinanceSearchTool

Finance search tool configuration for the Agent API

Properties

Name Type Description
type string Tool type identifier
View JSON Schema on GitHub

JSON Schema

perplexity-financesearchtool-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FinanceSearchTool",
  "title": "FinanceSearchTool",
  "description": "Finance search tool configuration for the Agent API",
  "properties": {
    "type": {
      "description": "Tool type identifier",
      "enum": [
        "finance_search"
      ],
      "type": "string"
    }
  },
  "required": [
    "type"
  ],
  "type": "object"
}