flow¶
A guided form of the create menu. A create menu is needed.
The information can be spread over several pages and also summarized in sections on each page. Attributes can be required. Leaving the page or going to the next page is no longer possible without filling in the fields. To upload or make a photo, "documents": true
must be set on the appropriate page.
"flow": {
"create": {
"title": "Flow",
"pages": [
{
"label": "Page One",
"description": "Description of page one",
"attributes": [
{
"name": "DESCRIPTION",
"section": "Section One"
},
{
"name": "DESCRIPTION_LONGDESCRIPTION",
"section": "Section Two",
"requiered": true
}
]
}
{
"label": "Page Two",
"description": "Description of page two",
"attributes": [
{
"name": "ASSETNUM"
},
{
"name": "LOCATION"
}
],
"documents": true
}
]
}
}