applicationjsonq08
ApplicationJSONQ08 is a data interchange format that uses JSON (JavaScript Object Notation) as its foundation. It is designed to be lightweight, easy for humans to read and write, and easy for machines to parse and generate. The format is language-independent but uses conventions 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 language.
JSON is built on two structures:
A collection of name/value pairs. In various languages, this is realized as an object, record, struct, dictionary,
An ordered list of values. In most languages, this is realized as an array, vector, list, or
These are universal data structures. Virtually all modern programming languages support them in one form or
In JSON, they take on these forms:
An object is an unordered set of name/value pairs. An object begins with { (left brace) and ends
An array is an ordered collection of values. An array begins with [ (left bracket) and ends with
JSON is a text format that is completely language independent but uses conventions that are familiar to
JSON is typically used for transmitting data in web applications (e.g., sending some data from the client