JSON: Difference between revisions
Jump to navigation
Jump to search
Line 6: | Line 6: | ||
=Overview= | =Overview= | ||
JSON stands for JavaScript Object Notation. It is a standardized text format for serialization of structured data. It is described by [https://www.ietf.org/rfc/rfc4627.txt RFC 4627]. It defines a small set of formatting rules for portable representation of simple data structures such as key-value pair collections, lists, etc. JSON is also an ''internet media type'', a text based content type that can be directly interpreted by JavaScript. It is the preferred exchange format for JavaScript-based web applications. The MIME media type for JSON is "application/json". | JSON stands for JavaScript Object Notation. It is a standardized text format for serialization of structured data. It is described by [https://www.ietf.org/rfc/rfc4627.txt RFC 4627]. It defines a small set of formatting rules for portable representation of simple data structures such as key-value pair collections, lists, etc. JSON is also an '''internet media type''', a text based content type that can be directly interpreted by JavaScript. It is the preferred exchange format for JavaScript-based web applications. The MIME media type for JSON is "application/json". | ||
=Example= | =Example= |
Revision as of 19:24, 24 December 2020
External
- The application/json Media Type for JavaScript Object Notation (JSON) https://www.ietf.org/rfc/rfc4627.txt RFC 4627
- http://json.org
Overview
JSON stands for JavaScript Object Notation. It is a standardized text format for serialization of structured data. It is described by RFC 4627. It defines a small set of formatting rules for portable representation of simple data structures such as key-value pair collections, lists, etc. JSON is also an internet media type, a text based content type that can be directly interpreted by JavaScript. It is the preferred exchange format for JavaScript-based web applications. The MIME media type for JSON is "application/json".