An operand that is a user-provided value.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ValueOperand", "title": "ValueOperand", "description": "An operand that is a user-provided value.", "properties": { "encodedValue": { "description": "Encoded value, which can be used directly in a JQL query.", "type": "string" }, "value": { "description": "The operand value.", "type": "string" } }, "required": [ "value" ], "type": "object" }