Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/aleksandergurin/simple-object-notation

SON (Simple Object Notation) data interchange format
https://github.com/aleksandergurin/simple-object-notation

Last synced: about 2 months ago
JSON representation

SON (Simple Object Notation) data interchange format

Awesome Lists containing this project

README

        

SON (Simple Object Notation) data interchange format.

Simple data format similar to JSON, but with some minor changes:
- comments starts with # sign and ends with newline (\n)
- comma after a key-value pair is optional
- comma after an array element is optional

JSON is compatible with SON in a sense that
JSON data is also SON data, but not vise versa.

SON data example:

{
# Personal information

"name": "Alexander Grothendieck"
"fields": "mathematics"
"main_topics": [
"Etale cohomology"
"Motives"
"Topos theory"
"Schemes"
]
}

License: Public Domain.
NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.

Original JSON data format was specified by Douglas Crockford.

Links:
https://github.com/aleksandergurin/simple-object-notation
http://json.org
https://github.com/douglascrockford/JSON-js
https://tools.ietf.org/html/rfc7159