Atlassian · Schema

FieldValueClause

A clause that asserts the current value of a field. For example, `summary ~ test`.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
field object
operand object
operator string The operator between the field and operand.
View JSON Schema on GitHub

JSON Schema

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