Configuration details of the Rules
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Rules", "title": "Rules", "type": "object", "description": "Configuration details of the Rules", "properties": { "logic": { "type": "string", "description": "logic", "example": "OR" }, "args": { "type": "array", "description": "Arguments", "example": [ "item buy,price,integer,Sum GT 100", "item buy,sku,integer,Count GT 5" ], "items": { "type": "string" } } } }