-
Notifications
You must be signed in to change notification settings - Fork 1
Detailed Info: Add Ons
Anne LoVerso edited this page Sep 2, 2021
·
3 revisions
Add-Ons should look like this:
[
{
"step": <step number>,
"weight": <number>,
"task": "<task filename>"
}
]
The [ ]
at the top and bottom indicate this is a list of objects. Each object is enclosed in { }
and every object has three properties - "step", "weight", and "task"
-
step
should be the number of the step that this task belongs in. -
weight
is a number that represents the order of the task in that step. Lower numbers come first -
task
should be the filename of the task details, which can be found (or created) in thetasks
folder.
An example Add-On file. This example has 2 objects in it. You can just 1, or as many as you want.
[
{
"step": 4,
"weight": 50,
"task": "floor-plan-approval-doh"
},
{
"step": 4,
"weight": 10,
"task": "food-safety-course"
}
]