# Separator

A visual divider between sections of a form. It has no input and no type-specific settings object.

Note: the API uses the spelling `"seperator"` (not "separator") for `questionType`.

## Schema

| Field | Type | Description |
|  --- | --- | --- |
| `questionType` | `"seperator"` | Identifies this as a separator |
| `question` | string | Label shown on the separator line |


Separator questions only use the common top-level properties. They do not collect answers.

```json
{
  "_id": "6a0ef85f3affac35058b0795",
  "questionType": "seperator",
  "question": "Separator",
  "displayOrder": 12,
  "isDeleted": false,
  "isActive": true
}
```