{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CustomChannelRule", "title": "CustomChannelRule", "additionalProperties": false, "properties": { "channel_type": { "title": "Channel Type", "type": "string" }, "combiner": { "$ref": "#/components/schemas/FilterLogicalOperator" }, "id": { "title": "Id", "type": "string" }, "items": { "items": { "$ref": "#/components/schemas/CustomChannelCondition" }, "title": "Items", "type": "array" } }, "required": [ "channel_type", "combiner", "id", "items" ], "type": "object" }