Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Issue Checklist sets the issue entity property checklist JSON object with the following fields/properties inside:

No Format
{
  "completedcompletedText": "Not false,Completed", // can also be "Mandatory Completed" or "All Completed"
  "completedTextactiveItems": 2, // also aliased as "uncheckedItems"Not
  Completed"allItems": 4,
  "activeItemsuncheckedMandatoryItems": 1,
  "allItemsallMandatoryItems": 2,
  "hasActiveItems": true, // also aliased as "hasUncheckedItems"
  "hasItems": true,
  "allItemsCompleted": false,
  "hasUncheckedMandatoryItems": true,
  "hasMandatoryItems": true,
  "mandatoryItemsCompleted": false,
  "progressText": "Checklist: 12/24",
  "progressPercent": 50,
  "items": Item 1 Item 2 Item 3 Item 4
}

Example usage

Entity properties are read-only. If you change them on your own, it won't update the checklist and your change will be overwritten when the checklist changes in UI or in any other valid way (e.g. through API, custom fields, post function, Automation rule, etc.), 

...