{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RulesResponse", "title": "RulesResponse", "type": "object", "required": [ "status", "data" ], "properties": { "status": { "type": "string", "enum": [ "success" ] }, "data": { "type": "object", "properties": { "groups": { "type": "array", "items": { "$ref": "#/components/schemas/RuleGroup" } } } } } }