JsonObject:
    | string
    | number
    | boolean
    | null
    | JsonObject[]
    | { [key: string]: JsonObject }

Recursive definition of a regular JS object, which is a key-value hash of strings to primitives, or another object of the same type.