Skip to main content

SectionConfigDto

Section configuration within a pane

idstringrequired

Unique identifier for the section

Example: section-applicant
namestringrequired

Display name of the section

Possible values: <= 255 characters

Example: Applicant Details
sequenceinteger<int32>required

Display order of the section within the pane

Possible values: >= 1

Example: 1
rowsinteger<int32>required

Number of grid rows in the section

Possible values: >= 1 and <= 20

Example: 1
columnsinteger<int32>required

Number of grid columns in the section

Possible values: >= 1 and <= 12

Example: 1
isRepeatableboolean

Whether the section can be repeated (for variable-length data)

Example: false
groupIdstringnullable

Group identifier for repeatable sections

Example: group-beneficiaries
SectionConfigDto
{
"id": "section-applicant",
"name": "Applicant Details",
"sequence": 1,
"rows": 1,
"columns": 1,
"isRepeatable": false,
"groupId": "group-beneficiaries"
}