{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CustomChannelCondition", "title": "CustomChannelCondition", "additionalProperties": false, "properties": { "id": { "title": "Id", "type": "string" }, "key": { "$ref": "#/components/schemas/CustomChannelField" }, "op": { "$ref": "#/components/schemas/CustomChannelOperator" }, "value": { "default": null, "title": "Value", "anyOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ], "nullable": true } }, "required": [ "id", "key", "op" ], "type": "object" }