# Explanation

Displays rich text content within the form without collecting an answer. Called "Explanation field" in the [forms.app builder](https://forms.app/en/help-center/explanation).

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

## Schema

| Field | Type | Description |
|  --- | --- | --- |
| `questionType` | `"wysiwyg"` | Identifies this as an explanation field |
| `showOnResponses` | boolean | Include this content when viewing submissions |
| `wysiwyg.content` | string | Rich text content (HTML-like markup) |


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

```json
{
  "_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]"
  }
}
```