{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ToolJSONSchema", "title": "ToolJSONSchema", "properties": { "name": { "type": "string", "title": "Name" }, "description": { "type": "string", "title": "Description" }, "parameters": { "$ref": "#/components/schemas/ParametersSchema" }, "type": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Type" }, "required": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "null" } ], "title": "Required" } }, "type": "object", "required": [ "name", "description", "parameters" ] }