DataFormPreviewDto
Preview of a form as the client would see it (sections + questions, no internal metadata)
Properties
| Name | Type | Description |
|---|---|---|
| dataFormName | string | |
| introduction | string | Introductory text shown at the top of the form |
Introductory text shown at the top of the form | ||
| sections | array of DataFormPreviewSectionDto | |
JSON Example
{
"dataFormName": "string",
"introduction": "string",
"sections": [
{
"title": "...",
"introduction": "...",
"sortOrder": "...",
"questions": "..."
}
]
}