up vote 223 down vote favorite
18
share [g+] share [fb]

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

link|improve this question

79% accept rate
12  
@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
5  
@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 '09 at 23:57
2  
Note that where your JSON ends up going is a big part of whether you can or can't comment it. If it's for configuration, then it's likely that you have control over all the parsers that will read it. Since a JSON parser is an extremely simple creature, extending one to allow comments should be very simple. Alternatively, you could use a YAML parser, and YAML does allow comments. (In some ways YAML is a lot more flexible for configuration purposes anyway.) – Pointy Jun 30 '10 at 14:08
feedback

protected by Brad Larson Oct 18 '11 at 14:40

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

14 Answers

up vote 122 down vote accepted

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" (or something) that would be ignored by apps that use the json data.

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|improve this answer
50  
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 '09 at 12:55
3  
It might pay to have some kind of prefix on the actual comment in case there's ever a valid field named comment: "__comment":"comment text goes here...", – Rob Fonseca-Ensor Feb 3 '10 at 11:41
3  
@Alex - are you sure that's valid JSON? I don't see anywhere in the docs where it allows for comments, c-block or otherwise... – Eli Jan 5 '11 at 23:40
3  
No that's invalid JSON. – vakio Feb 21 '11 at 15:20
2  
+1 all around. While the program should know how to deal with the json, sometimes json files are edited by hand, and comments are nice :) – Olie Jul 28 '11 at 20:10
show 6 more comments
feedback

Not allowing comments makes JSON useless for configuration files. Stupid mistake.

link|improve this answer
33  
aye to that. I don't want comments for the sake of documentation - I want a convenient means to slash out bits and enable them later on... – Roland Bouman Mar 19 '10 at 19:35
1  
@Roland that's very bad practice IMHO. When I see code full of commented pieces I think it was the first project the developer coded in that language and was unsure of how to get things done. Also, not allowing comments is not a big deal to be honest. It still rocks for web app configuration. – Camilo Martin Dec 8 '10 at 1:10
20  
@Camilo, nobody is delivering a patchwork of commented-out pieces of code. The point is that while developing you need ways to work with experimental features and new code. While developing it often happens that something that used to work breaks. In many cases, commenting out another, related, piece does not unbreak the app but may at least let you run it so you can work on some other feature or test what you're building now to fix things. Without a comment device, you're forced to deleting the offending piece. You claim it's not a big deal but offer zero justification or solution. – Roland Bouman Dec 9 '10 at 0:51
2  
By the way, re: nobody is delivering a patchwork of commented-out pieces of code take a look at this site's source, I can't even believe someone wrote that but it's not the first time I see these jewels. Actually it seems more and more to me that clean code is a rare exception in web projects. – Camilo Martin Dec 9 '10 at 8:17
2  
JSON wasn't meant for configuration files. YAML is better for that anyway. – Marnen Laibow-Koser Sep 6 '11 at 4:58
show 6 more comments
feedback

I just released JSON.minify() which strips out comments and whitespace from a block of JSON and makes it valid JSON that can be parsed. So, you might use it like: JSON.parse(JSON.minify(my_str));

When I released it, I got a huge backlash of people disagreeing with even the idea of it, so I decided that I'd write a comprehensive blog post on why comments make sense in JSON. Hopefully that's helpful to those who disagree with why JSON.minify() could be useful.

link|improve this answer
Just what I was looking for! Google V8 used to ignore comments, now it doesn't... – lttlrck Sep 21 '10 at 17:44
Great catch. Thanks. – Forkrul Assail Mar 11 '11 at 10:00
1  
The only problem I have with JSON.minify() is that it is really really slow. So I made my own implementation that does the same thing: gist.github.com/1170297 . On some large test files your implementation takes 74 seconds and mine 0.06 seconds. – WizKid Aug 25 '11 at 9:16
it'd be great if you could submit the suggested alternative algorithm to the github repo for JSON.minify(), so that it can be ported to all the supported langs: github.com/getify/json.minify – Kyle Simpson Aug 30 '11 at 17:20
2  
Perl's JSON supports # comments. – Johannes Ernst Nov 14 '11 at 17:36
show 1 more comment
feedback

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|improve this answer
feedback

No, comments in JSON are not allowed. This answer is based on:

link|improve this answer
feedback

If your text file, which is a JSON string, is going to be read by some program, how difficult would it be to strip out either c or c++ style comments before using it? Answer: It would be a one liner. If you do that then JSON files could be used as configuration files.

link|improve this answer
1  
Probably the best suggestion so far, though still an issue for keeping files as an interchange format, as they need pre-processing before use. – Orbling Feb 25 '11 at 11:04
feedback

You should write a JSON schema instead. JSON schema is currently a proposed internet draft specification. Besides documentation, the schema can also be used for validating your json data.

Example:

   {"description":"A person",
"type":"object",

"properties":
 {"name": {"type":"string"},
  "age" : {"type":"integer",
    "maximum":125}}

}

You can provide documentation by using the description schema attribute.

link|improve this answer
feedback

The Dojo javascript toolkit (at least as of version 1.4), allows you to include comments in your JSON. The comments can be of /* */ format. Dojo consumes the JSON via the dojo.xhrGet() call.

Other javascript toolkits may work similarly. If anybody finds one, please edit this response and include it.

This can be helpful when experimenting with alternate data structures (or even data lists) before choosing a final option.

link|improve this answer
feedback

Diito - justy encountering this for config files. I don't want to use XML (verbose, graphically, ugly, hard to read), or "ini" format (no hierarchy no real standard etc) or java "Properties" format ( like .ini )

JSON can do all they can do but way less verbose and more human readable - and parsers are easy and ubiquitous in many languanges. It's just a tree of data. But out of band comments are a necessity often to document "default" configurations and the like. Configs are never to be "full documents" but trees of saved data that can be human readable when needed.

I guess one could use "#": "comment", for "valid" JSON :)

link|improve this answer
For config files, I'd suggest YAML, not JSON. It's (almost) a more powerful superset of JSON, but supports more readable constructs as well, including comments. – Marnen Laibow-Koser Oct 19 '11 at 21:35
how many languages do you think supports YAML out of the box compared to json ? – Hamidam Jan 13 at 13:26
feedback

Consider using YAML. It's nearly a superset of JSON (virtually all valid JSON is valid YAML) and it allows comments.

link|improve this answer
feedback

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|improve this answer
3  
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 '09 at 18:20
1  
@StaxMan they were dropped exactly because people started using them as metadata. Crockford said it breaked the compatibility for what the format was designed, and I agree: if you want metadata, why not include it as actual data? It's even easier to parse this way. – Camilo Martin Dec 11 '10 at 9:03
Metadata belongs in metadata constructs (e.g. HTML <meta> tags), not comments. Abusing comments for metadata is just a hack used where no true metadata construct exists. – Marnen Laibow-Koser Sep 6 '11 at 4:55
feedback

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|improve this answer
2  
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 '09 at 18:21
“ability to add comments is useful for documents” — right, but I don’t think JSON is intended for documents. It’s intended as a data format for machines to read, hence comments are pointless. XML is document-centric, and I think intended to be human-readable. – Paul D. Waite Feb 10 '10 at 8:12
5  
JSON is much more human readable than xml. XML is more powerful but for 99% of usecases JSON will work just fine. – deft_code Jun 4 '10 at 19:48
2  
@caspin I disagree with XML being "more powerful". I think if there were tools for JSON (or YAML, for that matter) like there are for XML, it would be a different thing. But again, I love its simplicity. – Camilo Martin Dec 8 '10 at 1:15
JSON files are sometimes used, though YAML seems to be more common for that purpose. – Marnen Laibow-Koser Sep 6 '11 at 4:56
show 1 more comment
feedback

Just ran into this very issue. Comments are not allowed, however there is no explicit statement of this fact in the docs (I guess the productions at json.org are explicit). I put comments in a json configuration file, jsonsimple parser just returns null, no exceptions. BTW, the json lint at www.jslint.com says that json with comments is valid.

link|improve this answer
That's because JSLint is a JavaScript validator, not a JSON validator. – Marnen Laibow-Koser Sep 6 '11 at 4:53
feedback

Comments are not an official standard. Although some parsers support c-style comments. One that I use is JsonCpp. In the examples there is this one:

// Configuration options
{
    // Default encoding for text
    "encoding" : "UTF-8",

    // Plug-ins loaded at start-up
    "plug-ins" : [
        "python",
        "c++",
        "ruby"
        ],

    // Tab indent size
    "indent" : { "length" : 3, "use_space": true }
}

jsonlint does not validate this. So comments are a parser specific extension and not standard.

link|improve this answer
feedback

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