Can I comment a JSON file? If so, how?
|
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...
|
|||||||||||||||||||||
|
|
No, comments in JSON are not allowed. This answer is based on:
|
|||||
|
|
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. |
|||||||||||||||||||||
|
|
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. |
||||
|
|
|
Comments were removed from JSON by design.
|
|||||||||||||||||||||
|
|
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:
You can provide documentation by using the description schema attribute. |
|||||||||
|
|
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. |
|||||||
|
|
Consider using YAML. It's nearly a superset of JSON (virtually all valid JSON is valid YAML) and it allows comments. |
|||||||
|
|
The Dojo javascript toolkit (at least as of version 1.4), allows you to include comments in your JSON. The comments can be of 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. |
|||
|
|
|
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 :) |
|||||||
|
|
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"
|
|||||||||
|
|
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:
jsonlint does not validate this. So comments are a parser specific extension and not standard. |
|||
|
|
|
Depends on your json library, Json.net supports javascript style comments |
|||
|
|
|
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-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)
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! |
||||
|
|
|
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. |
|||||||||||||
|
|
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. |
|||||
|
|
JSON format
|
|||
|
|
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.



//commentsare 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