JIRA attribute path resolves an attribute value from the JIRA issue that has triggered the job. The attribute value is resolved from JRJC Issue Object To understand how the attribute path works, refer to the example below.

Example attribute path

Attribute Path Attribute Value
id 11120
description description body
summary summary content
status.name To Do
timeTracking.originalEstimateMinutes 5

Example Issue JSON that will be parsed to become JRJC Issue Object

{
  "expand": "renderedFields,names,schema,transitions,operations,editmeta,changelog,versionedRepresentations",
  "id": "11120",
  "self": "http://localhost:2990/jira/rest/api/2/issue/11120",
  "key": "TEST-136",
  "fields": {
    ...
    "description": "description body",
    "summary": "summary content",
    ...
    "status": {
      "name": "To Do",
        ...
    },
    "timetracking": {
      "originalEstimate": "5m",
      "remainingEstimate": "10m",
      "originalEstimateSeconds": 300,
      "remainingEstimateSeconds": 600
    }
  }
}