Type Alias JsonValue

JsonValue:
    | string
    | number
    | boolean
    | null
    | JsonValue[]
    | {
        [key: string]: JsonValue;
    }