{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MaxCountPerStepToolRuleSchema", "title": "MaxCountPerStepToolRuleSchema", "properties": { "tool_name": { "type": "string", "title": "Tool Name" }, "type": { "type": "string", "title": "Type" }, "max_count_limit": { "type": "integer", "title": "Max Count Limit" } }, "type": "object", "required": [ "tool_name", "type", "max_count_limit" ] }