Perplexity · Schema

ToolCallFunction

Properties

Name Type Description
name object
arguments object
View JSON Schema on GitHub

JSON Schema

perplexity-toolcallfunction-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ToolCallFunction",
  "title": "ToolCallFunction",
  "properties": {
    "name": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Name"
    },
    "arguments": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Arguments"
    }
  },
  "type": "object"
}