{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AttributeRule", "title": "AttributeRule", "type": "object", "properties": { "kind": { "type": "string", "enum": [ "attributerule" ] }, "id": { "type": "string" }, "name": { "type": "string" }, "dnfCondition": { "type": "array", "items": { "type": "array", "items": { "$ref": "#/components/schemas/AttributeMatcher" } } } } }