Skip to content

aleksandergurin/simple-object-notation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

SON (Simple Object Notation) data interchange format

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages