Atlassian · Schema

JiraExpressionResult

The result of evaluating a Jira expression.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
meta object Contains various characteristics of the performed expression evaluation.
value object The value of the evaluated expression. It may be a primitive JSON value or a Jira REST API object. (Some expressions do not produce any meaningful results—for example, an expression that returns a lam
View JSON Schema on GitHub

JSON Schema

atlassian-jiraexpressionresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/JiraExpressionResult",
  "title": "JiraExpressionResult",
  "additionalProperties": false,
  "description": "The result of evaluating a Jira expression.",
  "properties": {
    "meta": {
      "allOf": [
        {
          "$ref": "#/components/schemas/JiraExpressionEvaluationMetaDataBean"
        }
      ],
      "description": "Contains various characteristics of the performed expression evaluation."
    },
    "value": {
      "description": "The value of the evaluated expression. It may be a primitive JSON value or a Jira REST API object. (Some expressions do not produce any meaningful results\u2014for example, an expression that returns a lambda function\u2014if that's the case a simple string representation is returned. These string representations should not be relied upon and may change without notice.)"
    }
  },
  "required": [
    "value"
  ],
  "type": "object"
}