-
Notifications
You must be signed in to change notification settings - Fork 1
Steps
javier7ar edited this page Oct 9, 2017
·
6 revisions
The steps objects are used to configure the steps of the workflow used to take the sample. Each one has a type field (String) that define the kind of step, and depending on it the step object has other fields. You can combine steps objects of diferents types and repeat step obejcts of the same type with diferent values.
These are the always present fields:
- id : Int The identifier of the step
- type : String The type of the step: Information | Photo | Location | SelectOne | MultipleSelect | InsertText
- nextStepId : Int OPTIONAL. The identifier of the next step in the workflow. If this field is not present, it is assumed that this is the last step of the workflow. This field is not present on steps of type SelectOne, because the nextStepId is in the options to select and depends on what option is selected by the user.
- helpFileName : String OPTIONAL. The file name of the HTML file containing the help for the step. This file must be located with the SamplersConfig.json file. See the Showing Help section form more details