API Docs / Schemas / DataFormPreviewDto

DataFormPreviewDto

Preview of a form as the client would see it (sections + questions, no internal metadata)

Properties

Name Type Description
dataFormNamestring
introductionstring

Introductory text shown at the top of the form

Introductory text shown at the top of the form

sectionsarray of DataFormPreviewSectionDto

JSON Example

{
  "dataFormName": "string",
  "introduction": "string",
  "sections": [
    {
      "title": "...",
      "introduction": "...",
      "sortOrder": "...",
      "questions": "..."
    }
  ]
}

Used By Operations