Atlassian · Schema

FunctionOperand

An operand that is a function. See [Advanced searching - functions reference](https://confluence.atlassian.com/x/dwiiLQ) for more information about JQL functions.

CodeCollaborationPlatformProductivitySoftware Development

Properties

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

JSON Schema

atlassian-functionoperand-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FunctionOperand",
  "title": "FunctionOperand",
  "description": "An operand that is a function. See [Advanced searching - functions reference](https://confluence.atlassian.com/x/dwiiLQ) for more information about JQL functions.",
  "properties": {
    "arguments": {
      "description": "The list of function arguments.",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "encodedOperand": {
      "description": "Encoded operand, which can be used directly in a JQL query.",
      "type": "string"
    },
    "function": {
      "description": "The name of the function.",
      "type": "string"
    }
  },
  "required": [
    "arguments",
    "function"
  ],
  "type": "object"
}