JSONnotation
JSONnotation, or JSON notation, is a lightweight data-interchange format. It is easy for humans to read and write and easy for machines to parse and generate. JSON is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 1999. JSON is a text format that is language-independent. However, it uses conventions that are familiar to programmers of the C family of languages, including C, C++, C#, Java, JavaScript, Perl, Python, and many others. These properties make JSON an ideal data-interchange format.
The JSON format is built on two structures: a collection of name/value pairs, and an ordered list
A JSON object is an unordered set of name/value pairs. An object begins with the left brace
A JSON array is an ordered list of values. An array begins with the left bracket [ and
JSON notation is widely used for transmitting data between a server and a web application, as an