Description
eazyBI for Jira
Calculated field to return the description for each issue. This field can be imported as property.
Account-specific calculated field
Account specific calculated fields are defined in Source Data → Import options.
Settings for the new field
Internal name | cf_description |
---|---|
Display name | Description |
Data type | text |
Additional advanced settings | json_fields = ["description"] |
Custom JavaScript code:
return issue.fields.description;
Global calculated field
Global calculated fields are defined in eazyBI advanced settings.
Here are the settings for the new field definition. Keep the opening and closing quotation marks. '''
, do not delete them.
[jira.customfield_cf_description] name = "Description" data_type = "text" json_fields = "description" javascript_code = ''' return issue.fields.description; '''