{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FieldValueClause", "title": "FieldValueClause", "description": "A clause that asserts the current value of a field. For example, `summary ~ test`.", "properties": { "field": { "$ref": "#/components/schemas/JqlQueryField" }, "operand": { "$ref": "#/components/schemas/JqlQueryClauseOperand" }, "operator": { "description": "The operator between the field and operand.", "enum": [ "=", "!=", ">", "<", ">=", "<=", "in", "not in", "~", "~=", "is", "is not" ], "type": "string" } }, "required": [ "field", "operand", "operator" ], "type": "object" }