{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FunctionTool", "title": "FunctionTool", "properties": { "description": { "description": "A description of what the function does", "type": "string" }, "name": { "description": "The name of the function", "type": "string" }, "parameters": { "additionalProperties": true, "description": "JSON Schema defining the function's parameters", "type": "object" }, "strict": { "description": "Whether to enable strict schema validation", "type": "boolean" }, "type": { "enum": [ "function" ], "type": "string" } }, "required": [ "type", "name" ], "type": "object" }