I keep running into a certain kind of data structure, and wonder if there is a name for it. It maps very closely to JSON, but not exactly. The rules are:
- It is composed entirely of maps, arrays, and primitives.
- It is hierarchical. Maps contain name/value pairs, where a value can be another map, an array, or a primitive. Arrays contain values with the same rules.
- The top level is always a map.
- The primitives are strings, integers, floats, booleans, and possibly dates.
- Sometimes the map is just an unordered hash, and sometimes the order of the name/value pairs matter.
This is a really, really useful structure. You can use it to represent documents, database records, various messages, http requests, lots of stuff. I've run into it in Freemarker (as the 'data model'), Mongo, and anything that uses JSON.
It's not really JSON, because that's a file format, not a specification for a particular data structure. It's not an "object", because object trees can point to other things, like streams and functions. It's not a DOM.
What is it?
Around the office, we've started to call it a "garg", for "generalized argument".