Atlassian · Schema

JiraExpressionEvalRequestBean

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
context object The context in which the Jira expression is evaluated.
expression string The Jira expression to evaluate.
View JSON Schema on GitHub

JSON Schema

atlassian-jiraexpressionevalrequestbean-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/JiraExpressionEvalRequestBean",
  "title": "JiraExpressionEvalRequestBean",
  "additionalProperties": false,
  "properties": {
    "context": {
      "allOf": [
        {
          "$ref": "#/components/schemas/JiraExpressionEvalContextBean"
        }
      ],
      "description": "The context in which the Jira expression is evaluated."
    },
    "expression": {
      "description": "The Jira expression to evaluate.",
      "example": "{ key: issue.key, type: issue.issueType.name, links: issue.links.map(link => link.linkedIssue.id) }",
      "type": "string"
    }
  },
  "required": [
    "expression"
  ],
  "type": "object"
}