vote up 14 vote down star

Can I comment a JSON file? If so, how?

flag

80% accept rate
Why would you want to? – StingyJack Oct 28 '08 at 20:42
@StingyJack: To explain things that may not be obvious, or whatever else one might do with comments. I for one often have comments in data files. XML, ini files, and many other formats include provisions for comments. – Michael Burr Oct 28 '08 at 20:51
@StingyJack -- I have a key algorithm for my product that must be implemented in three separate languages: Javascript, Objective-C, and Python. A lot of this algorithm can be abstracted away into configuration. And what configuration syntax turns out to be easiest for me to consume in all three cases? JSON, of course. But I'd love to be able to document and comment directly in the configuration files. I realize JSON was originally intended strictly for interchange... but like all things, its use cases grow... – Dave Peck Aug 3 at 23:57

5 Answers

vote up 10 vote down check

I don't believe you can have an actual comment. The JSON should all be data, and if you include a comment, then it will be data too.

You could do that with a data element called "Comment" that would be ignored by apps that use the json data. It would be a pretty inelegant solution though.

You would probably be better having the comment in the processes that generate/receive the json, as they are supposed to know what the json data will be in advance, or at least the structure of it.

But if you decided to...

{
    "comment" : "comment text goes here...",
    "glossary": {
        "title": "example glossary",
    	"GlossDiv": {
            "title": "S",
    		"GlossList": {
                "GlossEntry": {
                    "ID": "SGML",
    				"SortAs": "SGML",
    				"GlossTerm": "Standard Generalized Markup Language",
    				"Acronym": "SGML",
    				"Abbrev": "ISO 8879:1986",
    				"GlossDef": {
                        "para": "A meta-markup language, used to create markup languages such as DocBook.",
    					"GlossSeeAlso": ["GML", "XML"]
                    },
    				"GlossSee": "markup"
                }
            }
        }
    }
}
link|flag
I don't think this is inelegant at all - it's exactly what XML does. The comment becomes part of the resulting document and it's only by convention that the contents are ignored (XML comments are accessable via the DOM, XPath etc. you can use them to store data if you want. Doing so would be strange but not without precedent - <!--[if IE 7]>) – Joe Gauterin Aug 11 at 12:55
vote up 1 vote down

The idea behind JSON is to provide simple data exchange between applications. These are typically web based and the language is javascript.

It doesn't really allow for comments as such, however, passing a comment as one of the name/value pairs in the data would certainly work, although that data would obviously need to be ignored or handled specifically by the parsing code.

All that said, it's not the intention that the JSON file should contain comments in the traditional sense. It should just be the data.

Have a look at the JSON website for more detail.

link|flag
It is true that JSON format does not have comments. Personally I think that is a significant mistake -- ability to have comments as metadata (not data) is a very useful thing with xml. Earlier draft versions of JSON specification did include comments, but for some reason they were dropped. :-/ – StaxMan Sep 1 at 18:20
vote up 0 vote down

Typically, JSON is generated or parsed by some other language where comments are allowed. I've never really heard of a JSON "file", it's usually more of a transient, over-the-wire type thing - and it's kind of nightmarish for humans to read anyway.

link|flag
It does not really matter (wrt this question) whether JSON document is saved as a file or not -- ability to add comments is useful for documents. Alas, there is no comment construct in JSON. – StaxMan Sep 1 at 18:21
vote up 8 vote down

You can't. At least that's my experience from quick glance to json.org

Json has its syntax visualized on that page. No note from comments.

link|flag
vote up -1 vote down

Update After reviewing the spec, comments are not allowed, technically. However, depending on what is processing the JSON, you may be able to get away with it. Of course, that doesn't make it right to do.

JSON is just javascript, so you can use javascript comments.

For example:

// this is a comment

/*
  This is a 
  multi-line comment
*/
link|flag
1  
While true, I'm with Cheery's note about comments being absent from the JSON syntax specs. – OregonGhost Oct 28 '08 at 20:44
2  
My understanding is that JSON isn't Javascript -- it's a separate format that can be parsed by a Javascript parser, but only consists of a small subset of that language. – Sean McMains Oct 28 '08 at 20:45
No, JSON is a subset of JavaScript that does not include any comment syntax. Most JSON parsers do not support JavaScript comments. – cjm Oct 28 '08 at 20:45
1  
JSON is neither JavaScript nor a subset of JavaScript. It's simply JavaScript-like (i.e. modeled after JavaScript). For a clarification, see my blog post: seattlesoftware.wordpress.com/2008/01/… – Chris Oct 28 '08 at 21:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.