custom_types.JsonObject

custom_types.JsonObject=Mapping[
    str,
    int
    | float
    | str
    | bool
    | date
    | datetime
    | UUID
    | Sequence[Any]
    | Mapping[str, Any]
    | None,
]