JSONobjekt
JSONobjekt, short for JavaScript Object Notation object, is a data interchange format that is easy for humans to read and write, and easy for machines to parse and generate. It is a text format that is completely 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:
1. A collection of name/value pairs. In various languages, this is realized as an object, record, struct,
2. An ordered list of values. In most languages, this is realized as an array, vector, list,
These are universal data structures. Virtually all modern programming languages support them in one form or
In JSON, they take on these forms:
1. Objects are unordered sets of name/value pairs. An object begins with { (left brace) and ends with
2. An array is an ordered collection of values. An array begins with [ (left bracket) and ends
JSON is a text format that is completely language-independent but uses conventions familiar to programmers of