Take, for example, the following type of option.
data Tree = Empty
| Leaf Int
| Node Tree Tree
JSON , .
Variant | JSON
--------+---------------
Empty | null
--------+---------------
Leaf | {
| "leaf": 7
| }
--------+---------------
Node | {
| "node": [
| <tree>,
| <tree>
| ]
| }
, JSON -, .