Checklist Template import/export format

Below is an example of the exported checklist template. Use this example if you want to upload your checklist templates.

Checklist in text format .TXT:

[{
    "dateAdded": "", //date and time of creation
    "dateModified": "", //date and time of modification
    "description": "",
    "id": "template_id", //unique user_id
    "modifiedUserId": "", //unique user_id
    "name": "Checklist_template", //template title
    "template": [{
        "children": [{
            "children": [{
                "children": [],
                "description": "",
                "name": "Item lvl 3" //checklist item (3rd level)
            }],
            "description": "",
            "name": "Item lvl 2", ///checklist item (2nd level)
            "$folded": false //checklist folder (true or false)
        }],
        "description": "",
        "name": "Item lvl 1" //template item
    }],
    "userId": ""
}]

Checklist in Markdown .md format

- [ ] Knowledge base
  - [ ] Checklist template
    - [ ] item lvl 1
      - [ ] item lvl 2
        - [ ] item lvl 3

See also