Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aleksandergurin/simple-object-notation
SON (Simple Object Notation) data interchange format
https://github.com/aleksandergurin/simple-object-notation
Last synced: about 1 month ago
JSON representation
SON (Simple Object Notation) data interchange format
- Host: GitHub
- URL: https://github.com/aleksandergurin/simple-object-notation
- Owner: aleksandergurin
- Created: 2015-06-22T21:36:57.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-06-22T21:52:37.000Z (over 9 years ago)
- Last Synced: 2024-08-03T18:15:03.430Z (5 months ago)
- Language: Python
- Size: 117 KB
- Stars: 14
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
- awesome-json-next - aleksandergurin/simple-object-notation
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 optionalJSON 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