{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ExistenceOperatorExistenceFilter", "title": "ExistenceOperatorExistenceFilter", "type": "object", "properties": { "type": { "type": "string", "enum": [ "existence" ] }, "operator": { "description": "Operators for existence filters.", "type": "string", "enum": [ "is-set", "not-set" ] } }, "required": [ "type", "operator" ] }