I agree it would be nice to have something with more data types. Binary b64/hex would be nice.
When you read 847548, is that a number or is that Saturday, 10 January 1970?
Having a type removes that ambiguity. It would be more JSONish for it to be human readable, maybe @1970-01-10T19:25:48.
Mongo types the field name, `{"$date":1623132000}`, if I'm not mistaken. Rust style would be `1623132000_unix`.
Or with anticipation of a more full typing system, where the time is explicitly named:
`{"now": unix:1623132000}`
For now, when I need typing, I use https://json-schema.org
If you need more, you enter territory that is much too complex to build into the "simplest data format" spec.