{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/KeywordOperand", "title": "KeywordOperand", "description": "An operand that is a JQL keyword. See [Advanced searching - keywords reference](https://confluence.atlassian.com/jiracorecloud/advanced-searching-keywords-reference-765593717.html#Advancedsearching-keywordsreference-EMPTYEMPTY) for more information about operand keywords.", "properties": { "keyword": { "description": "The keyword that is the operand value.", "enum": [ "empty" ], "type": "string" } }, "required": [ "keyword" ], "type": "object" }