Atlassian · Schema

ListOperand

An operand that is a list of values.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
encodedOperand string Encoded operand, which can be used directly in a JQL query.
values array The list of operand values.
View JSON Schema on GitHub

JSON Schema

atlassian-listoperand-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListOperand",
  "title": "ListOperand",
  "description": "An operand that is a list of values.",
  "properties": {
    "encodedOperand": {
      "description": "Encoded operand, which can be used directly in a JQL query.",
      "type": "string"
    },
    "values": {
      "description": "The list of operand values.",
      "items": {
        "$ref": "#/components/schemas/JqlQueryUnitaryOperand"
      },
      "minLength": 1,
      "type": "array"
    }
  },
  "required": [
    "values"
  ],
  "type": "object"
}