{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EventPropFilter", "title": "EventPropFilter", "additionalProperties": false, "properties": { "type": { "allOf": [ { "$ref": "#/components/schemas/EventPropFilterTypeEnum" } ], "title": "Type" }, "key": { "title": "Key", "type": "string" }, "value": { "title": "Value" }, "operator": { "default": null, "title": "Operator", "type": "string", "nullable": true } }, "required": [ "type", "key", "value" ], "type": "object" }