A time predicate for a temporal JQL clause.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/JqlQueryClauseTimePredicate", "title": "JqlQueryClauseTimePredicate", "description": "A time predicate for a temporal JQL clause.", "properties": { "operand": { "$ref": "#/components/schemas/JqlQueryClauseOperand" }, "operator": { "description": "The operator between the field and the operand.", "enum": [ "before", "after", "from", "to", "on", "during", "by" ], "type": "string" } }, "required": [ "operand", "operator" ], "type": "object" }