Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
19  
@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
10  
@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
7  
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
If you, like me, were wondering whether //comments are OK for the specific use-case of a Sublime Text configuration file, the answer is yes (as of version 2). Sublime Text will not complain about it, at least, whereas it will complain about {"__comment": ...} in the console, because it is an unexpected field. – seafangs Feb 1 at 15:12
and perhaps this is one reason why TOML was created.. – AlexanderN May 1 at 5:22

16 Answers

up vote 380 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 have a designated 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"
            }
         }
      }
   }
}
share|improve this answer
114  
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
7  
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
4  
@Alex - Where do you see that in the JSON doc? I may be wrong, but I'm pretty sure a JSON file can't contain JavaScript code - it just uses JavaScript Object Notation. I generally go by json.org. – Eli Dec 30 '10 at 18:25
8  
No that's invalid JSON. – vakio Feb 21 '11 at 15:20
6  
+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 14 more comments

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

share|improve this answer
16  
Meta-comment: this are the kind of answers I like most. Short, to the point and undeniable. Keep that attitude going! – silviot Jun 7 '12 at 11:01

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.

share|improve this answer
1  
Just what I was looking for! Google V8 used to ignore comments, now it doesn't... – McTrousers Sep 21 '10 at 17:44
6  
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
2  
Perl's JSON supports # comments. – Johannes Ernst Nov 14 '11 at 17:36
2  
In my opinion, this is a great approach, and very welcome indeed. What happens, @MarnenLaibow-Koser, when you need to talk about the data-packet interchange format? I need a way to present a JSON packet to someone, and have it annotated for understanding -- supporting commenting in JSON itself is a very convenient and powerful way to accomplish that goal. Using JSON itself to demonstrate JSON means I can apply JSON tooling to my examples! – Viktor Haag Mar 6 '12 at 16:01
2  
@MiniGod I have already heard Doug's thoughts on this topic many times. I addressed them long ago in my blog post: blog.getify.com/json-comments – Kyle Simpson Feb 26 at 23:21
show 5 more comments

Comments were removed from JSON by design.

I removed comments from JSON because I saw people were using them to hold parsing directives, a practice which would have destroyed interoperability. I know that the lack of comments makes some people sad, but it shouldn't.

Suppose you are using JSON to keep configuration files, which you would like to annotate. Go ahead and insert all the comments you like. Then pipe it through JSMin before handing it to your JSON parser.

Source: Public statement by Douglas Crockford on G+

share|improve this answer
19  
That is the lamest reason for making an important decision, ever! – Chris Nash Oct 12 '12 at 20:42
5  
@ChrisNash let's just say that Crockford is a man of strong opinions ;) – Artur Czajka Oct 14 '12 at 8:38
4  
I thought JSON was to supposed to be more human readable than, say, XML? Comments are for readability. – Chris Nash Oct 14 '12 at 13:00
3  
Anyway, you could be naughty and add parsing directives in the JSON: {"__directives":{"#n#":"DateTime.Now"}, "validdate":"#n#"}... It looks like YAML is the way forward then... – Chris Nash Oct 14 '12 at 13:04
1  
Removing /* */ comments also made JSON a better subset of YAML. – Schwern Nov 29 '12 at 7:47
show 6 more comments

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.

share|improve this answer

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.

share|improve this answer
Is JSON schema alive? It exists but is it supported by any known library? – Munhitsu Oct 29 '12 at 14:31
yes, the json-schema google group is fairly active and I would recommend JSV for a good JavaScript implementation of a JSON Schema validator. – raffel Nov 27 '12 at 11:34
This only helps with structured documentation, not ad-hoc documentation – Juan Mendes Apr 4 at 17:47
If you use clojure (and I'm sure you don't) there's a reasonably featured open-source JSON schema parser here: github.com/bigmlcom/closchema – charleslparker Apr 15 at 13:50

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.

share|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
I agree and have written a JSON parser in Java, available at www.SoftwareMonkey.org, that does exactly that. – Software Monkey Jul 28 '12 at 1:51

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

share|improve this answer
Note that the converse is not true (valid YAML !=> valid JSON) – g33kz0r Sep 11 '12 at 4:01
2  
@g33kz0r Correct, hence my description of YAML as a near-superset of JSON. – Marnen Laibow-Koser Sep 12 '12 at 14:58

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.

share|improve this answer

Sorry, We cant use comments in JSON... See the syntax diagram for JSON in JSON.org

Douglas Crockford says "why he removed comment in json and providing alternate way to do that"

I removed comments from JSON because I saw people were using them to hold parsing directives, a practice which would have destroyed interoperability. I know that the lack of comments makes some people sad, but it shouldn't.

Suppose you are using JSON to keep configuration files, which you would like to annotate. Go ahead and insert all the comments you like. Then pipe it through JSMin before handing it to your JSON parser.

share|improve this answer
I believe what you are referring to is just text annotation for documentation purpose. It's not what is actually returned by the web service. – HoLyVieR Nov 18 '12 at 3:56
While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. – Ankur Nov 18 '12 at 8:15
@HoLyVieR Yeah! You are right. Edited now. Thank you... – NavaRajan Jan 24 at 6:58
@Ankur Point noted. Thank you... – NavaRajan Jan 24 at 6:58

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 :)

share|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 '12 at 13:26
@Hamidam Over a dozen languages support yaml: yaml.org - but you're right to ask how many have support built-in, without the need for a third-party library dependency. Looks like Ruby 1.9.2 does. Anyone know of others? And which languages ship support for json by default? – nealmcb Mar 21 '12 at 15:53

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.

share|improve this answer

Depends on your json library, Json.net supports javascript style comments /* commment */.
See another SO question.

share|improve this answer

JSON makes a lot of sense for config files and other local usage because it's ubiquitous and because it's much simpler than XML.

If people have strong reasons against having comments in JSON when communicating data (whether valid or not), then possibly JSON could be split into two:

  • JSON-COM: JSON on the wire, or rules that apply when communicating JSON data.
  • JSON-DOC: JSON document, or JSON in files or locally. Rules that define a valid JSON document.

JSON-DOC will allow comments, and other minor differences might exist such as handling whitespace. Parsers can easily convert from one spec to the other.

With regards to the remark made by Douglas Crockford on this issues (referenced by @Artur Czajka)

Suppose you are using JSON to keep configuration files, which you would like to annotate. Go ahead and insert all the comments you like. Then pipe it through JSMin before handing it to your JSON parser.

We're talking about a generic config file issue (cross language/platform), and he's answering with a JS specific utility!

Sure a JSON specific minify can be implemented in any language, but standardize this so it becomes ubiquitous across parsers in all languages and platforms so people stop wasting their time lacking the feature because they have good use-cases for it, looking the issue up in online forums, and getting people telling them it's a bad idea or suggesting it's easy to implement stripping comments out of text files.

The other issue is interoperability. Suppose you have a library or API or any kind of subsystem which has some config or data files associated with it. And this subsystem is to be accessed from different languages. Then do you go about telling people: by the way don't forget to strip out the comments from the JSON files before passing them to the parser!

share|improve this answer

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.

share|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
2  
@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
1  
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

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.

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

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.

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