Is there a type to represent any JSON serializable object in Python?
It is my understanding that json.load returns any. I do not believe I can change the built-in typing, but I think it would be better to use more specific typing in my programs, since not all objects are JSON serializable.…