DataFormSectionDto
A section within a form
Properties
| Name | Type | Description |
|---|---|---|
| code | string | Stable identifier for this section, used to match across saves |
Stable identifier for this section, used to match across saves | ||
| title | string | The display title of the section |
The display title of the section | ||
| introduction | string | Introductory text shown to clients at the top of this section. |
Introductory text shown to clients at the top of this section. | ||
| sortOrder | integer | The display order of this section relative to others in the form |
The display order of this section relative to others in the form | ||
| clientTypes | array of enum | The types of clients this section is applicable to. |
The types of clients this section is applicable to. | ||
| questions | array of DataFormQuestionDto | The questions belonging to this section, in display order |
The questions belonging to this section, in display order | ||
JSON Example
{
"code": "string",
"title": "string",
"introduction": "string",
"sortOrder": 0,
"clientTypes": [
"PrivateLimitedCompany"
]
}