Atlassian · Schema

KeywordOperand

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.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
keyword string The keyword that is the operand value.
View JSON Schema on GitHub

JSON Schema

atlassian-keywordoperand-schema.json Raw ↑
{
  "$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"
}