{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ChildToolRuleSchema", "title": "ChildToolRuleSchema", "properties": { "tool_name": { "type": "string", "title": "Tool Name" }, "type": { "type": "string", "title": "Type" }, "children": { "items": { "type": "string" }, "type": "array", "title": "Children" } }, "type": "object", "required": [ "tool_name", "type", "children" ] }