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