Form Sections
Sections are the first data child in a form-response, they serve the purpose of breaking up each form and grouping functionally similar input fields.
Data
| Key | Type(s) | Optional | Description |
|---|---|---|---|
| title | string |
The title for the section | |
| description | string null |
A short text about the functionally grouped input fields, can be null |
|
| fields | array |
Collection of input fields for the section, see Form fields for more info on their structure |
Example
{
"data": [
{
"title": "Persoonlijke gegevens",
"description": null,
"fields": [
...
]
},
{
"title": "Talenkennis",
"description": null,
"fields": [
...
]
},
{
"title": "Gdpr",
"description": "Lees ons privacy statement na via de \"privacy statement\"-link onderaan de pagina.",
"fields": [
...
]
},
...
]
}