{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "AnthropicFunctionDefinition", "properties": { "name": { "type": "string", "title": "Name" }, "description": { "type": "string", "title": "Description" }, "input_schema": { "type": "object", "title": "Input Schema" } }, "type": "object", "required": [ "name", "description", "input_schema" ] }