JavaScript Object Notation (JSON) Data Interchange Format: Difference between revisions
(ContinuousReplacement) Tag: continuous replacement |
No edit summary |
||
Line 15: | Line 15: | ||
== References == | == References == | ||
=== 2024 === | |||
* (Wikipedia, 2024) ⇒ https://en.wikipedia.org/wiki/JSON Retrieved:2024-12-13. | |||
** '''JSON''' ('''JavaScript Object Notation''', pronounced or ) is an [[open standard]] file format and [[electronic data interchange|data interchange]] format that uses [[human-readable]] text to store and transmit data objects consisting of [[name–value pair]]s and [[array data type|array]]s (or other [[serialization|serializable]] values). It is a commonly used data format with diverse uses in [[electronic data interchange]], including that of [[web application]]s with [[server (computing)|server]]s. <P> JSON is a [[Language-independent specification|language-independent]] data format. It was derived from [[JavaScript]], but many modern [[programming language]]s include code to generate and [[parse]] JSON-format data. JSON filenames use the extension <code>.json</code>. <P> [[Douglas Crockford]] originally specified the JSON format in the early 2000s.<ref name="saga">Transcript: </ref> He and [[Chip Morningstar]] sent the first JSON message in April 2001. | |||
=== 2013 === | === 2013 === | ||
Line 24: | Line 28: | ||
__NOTOC__ | __NOTOC__ | ||
[[Category:Concept]] | [[Category:Concept]] | ||
Revision as of 07:39, 13 December 2024
A JavaScript Object Notation (JSON) Data Interchange Format is a human-readable data interchange format with origins from JavaScript.
- Context:
- It can be used to create a JSON Data Structure (such as a JSON data file).
- It can be referenced by a JSON-based Format.
- …
- Counter-Example(s):
- See: AJAX, JSON Encoder.
References
2024
- (Wikipedia, 2024) ⇒ https://en.wikipedia.org/wiki/JSON Retrieved:2024-12-13.
- JSON (JavaScript Object Notation, pronounced or ) is an open standard file format and data interchange format that uses human-readable text to store and transmit data objects consisting of name–value pairs and arrays (or other serializable values). It is a commonly used data format with diverse uses in electronic data interchange, including that of web applications with servers.
JSON is a language-independent data format. It was derived from JavaScript, but many modern programming languages include code to generate and parse JSON-format data. JSON filenames use the extension
.json
.Douglas Crockford originally specified the JSON format in the early 2000s.[1] He and Chip Morningstar sent the first JSON message in April 2001.
- JSON (JavaScript Object Notation, pronounced or ) is an open standard file format and data interchange format that uses human-readable text to store and transmit data objects consisting of name–value pairs and arrays (or other serializable values). It is a commonly used data format with diverse uses in electronic data interchange, including that of web applications with servers.
2013
- http://en.wikipedia.org/wiki/JSON
- JSON, or JavaScript Object Notation, is a text-based open standard designed for human-readable data interchange. It is derived from the JavaScript scripting language for representing simple data structures and associative arrays, called objects. Despite its relationship to JavaScript, it is language-independent, with parsers available for many languages.
The JSON format was originally specified by Douglas Crockford, and is described in RFC 4627. The official Internet media type for JSON is
application/json
. The JSON filename extension is.json
.The JSON format is often used for serializing and transmitting structured data over a network connection. It is used primarily to transmit data between a server and web application, serving as an alternative to XML.
- JSON, or JavaScript Object Notation, is a text-based open standard designed for human-readable data interchange. It is derived from the JavaScript scripting language for representing simple data structures and associative arrays, called objects. Despite its relationship to JavaScript, it is language-independent, with parsers available for many languages.
- ↑ Transcript: