{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api.sentinel-hub.com/schemas/Cql2NotExpression", "title": "cql2NotExpression", "type": "object", "required": [ "op", "args" ], "properties": { "op": { "type": "string", "enum": [ "not" ] }, "args": { "type": "array", "minItems": 1, "maxItems": 1, "items": { "$ref": "#/components/schemas/Cql2BooleanExpression" } } } }