{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "FunctionDefinition",
"type": "object",
"description": "The function definition.",
"properties": {
"name": {
"type": "string",
"description": "The name of the function to be called."
},
"description": {
"type": "string",
"description": "A description of what the function does."
},
"parameters": {
"type": "object",
"description": "The parameters the functions accepts, described as a JSON Schema object."
}
}
}