{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/zaraz_timer-rule", "title": "zaraz_timer-rule", "properties": { "action": { "enum": [ "timer" ], "type": "string" }, "id": { "type": "string" }, "settings": { "properties": { "interval": { "minimum": 50, "type": "integer" }, "limit": { "minimum": 0, "type": "integer" } }, "required": [ "interval", "limit" ], "type": "object" } }, "required": [ "id", "action", "settings" ], "type": "object" }