Skip to content

Displays rich text content within the form without collecting an answer. Called "Explanation field" in the forms.app builder.

Uses questionType "wysiwyg" with HTML-like content in the wysiwyg.content field.

Schema

FieldTypeDescription
questionType"wysiwyg"Identifies this as an explanation field
showOnResponsesbooleanInclude this content when viewing submissions
wysiwyg.contentstringRich text content (HTML-like markup)

Content uses a simplified markup format. For example, [p]...[/p] renders as a paragraph.

{
  "_id": "6a0ef8723affac35058b0797",
  "questionType": "wysiwyg",
  "question": "Enter your explanation here.",
  "displayOrder": 14,
  "isDeleted": false,
  "isActive": true,
  "showOnResponses": false,
  "wysiwyg": {
    "content": "[p]This is an explanation field.[/p]"
  }
}