{ "$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" }