Section
A section can regroup multiple sub fields, the section name will prefix his sub fields name
{
"person": {
"type": "section",
"properties": {
"first_name": {
"label": "First name",
"component": "text"
}
}
}
}
This example will generate an object that will looks like this :
{ person: { first_name: "value" } }