Perplexity · Schema
FunctionCallOutputItem
Properties
| Name | Type | Description |
|---|---|---|
| arguments | string | JSON string of arguments |
| call_id | string | Correlates with function_call_output input |
| id | string | |
| name | string | |
| status | object | |
| thought_signature | string | Base64-encoded opaque signature for thinking models |
| type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/FunctionCallOutputItem",
"title": "FunctionCallOutputItem",
"properties": {
"arguments": {
"description": "JSON string of arguments",
"type": "string"
},
"call_id": {
"description": "Correlates with function_call_output input",
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"status": {
"$ref": "#/components/schemas/Status"
},
"thought_signature": {
"description": "Base64-encoded opaque signature for thinking models",
"type": "string"
},
"type": {
"enum": [
"function_call"
],
"type": "string"
}
},
"required": [
"type",
"id",
"status",
"name",
"call_id",
"arguments"
],
"type": "object"
}