Schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The ID of the function."
},
"args": {
"type": "object",
"description": "The arguments passed to the function.",
"properties": {},
"additionalProperties": true
},
"options": {
"type": "object",
"description": "The options passed to the function.",
"properties": {},
"additionalProperties": true
},
"result": {
"type": "object",
"description": "The result returned from the function.",
"properties": {},
"additionalProperties": true
}
},
"required": [
"id"
],
"additionalProperties": false
}