Atlassian · Schema

ValueOperand

An operand that is a user-provided value.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
encodedValue string Encoded value, which can be used directly in a JQL query.
value string The operand value.
View JSON Schema on GitHub

JSON Schema

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