edn
Extensible Data Notation (EDN) is a data notation designed for use with Clojure and its ecosystem. Created by Rich Hickey, EDN serves as a portable, human- and machine-readable format for representing data structures, with a focus on being simple yet extensible enough to carry richer types than JSON allows. EDN is a subset of Clojure data structures and is intended to be usable outside of the Clojure compiler.
Syntax and data types: EDN uses tokens to represent literals such as nil, true, false; numbers, strings;
Usage: EDN is used for data interchange between programs in the Clojure ecosystem and beyond. Tools exist
Relation to JSON and scope: Compared with JSON, EDN offers richer literals and a syntax that aligns
See also: Clojure, JSON, data notation, tagged literals, EDN libraries.