JSON (JavaScript Object Notation) is a lightweight, text-based, language-independent data interchange format, derived from JavaScript but used by many programming languages. JSON is easy for humans to read and write, and easy for machines to parse and generate.
Key Features of JSON
Key Features
Text-based: JSON is purely text, which can be read and parsed by a wide variety of programming languages.
Human-readable: The format is self-describing and easy to understand.
Lightweight: JSON structures are compact, which makes them ideal for network transmissions.
Language-Independent: Though derived from JavaScript, JSON is supported natively or through libraries in most major programming languages.
JSON Syntax
JSON Syntax
JSON is built on two structures:
Objects: A collection of name/value pairs. In various languages, this is realized as an object, record, struct, dictionary, hash table, keyed list, or associative array.
Arrays: An ordered list of values. In most languages, this is realized as an array, vector, list, or sequence.