You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
687 B
26 lines
687 B
2 years ago
|
## Section
|
||
|
|
||
|
Sections are under the top level of the form definition. A example section might look something like this:
|
||
|
|
||
|
```JSON
|
||
|
"sections": {
|
||
|
"tenancy_and_property": {
|
||
|
"label": "Property and tenancy information",
|
||
|
"subsections": {
|
||
|
"property_information": {
|
||
|
...
|
||
|
},
|
||
|
"tenancy_information": {
|
||
|
...
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
...
|
||
|
}
|
||
|
```
|
||
|
|
||
|
In the above example the section id would be `tenancy_and_property` and its subsections would be `property_information` and `tenancy_information`.
|
||
|
|
||
|
The label contains the text that users will see for that section in the tasklist page of a case log.
|
||
|
|
||
|
Sections can contain one or more subsections.
|