{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Tool", "title": "Tool", "properties": { "name": { "type": "string" }, "description": { "type": "string" }, "parameters": { "$ref": "#/components/schemas/Record_string.any_" }, "strict": { "type": "boolean" } }, "required": [ "name" ], "type": "object", "additionalProperties": false }