Jump to content

JSON: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Being a replacement for XML in AJAX is far from JSON's only use case, as evident by the article's body. AJAX is by definition a type of asynchronous browser–server communication, no need stating it explicitly here as it's just a use case example and there is an entire article explaining AJAX.
Tung (talk | contribs)
m grammar
Line 14: Line 14:
}}
}}


In [[computing]], '''JavaScript Object Notation''' ('''JSON''') ({{IPAc-en|ˈ|dʒ|eɪ|s|ən}} "Jason"<ref name ="Pronunciation">{{cite web | title = Doug Crockford "Google Tech Talks: JavaScript: The Good Parts" | date = 7 February 2009 | url = https://www.youtube.com/watch?v=hQVTIJBZook&t=2405 }}</ref><ref name="PronunciationJoke">{{cite web | title = Douglas Crockford: pronouncing | date = Nov 14, 2014 | url = https://www.youtube.com/watch?v=zhVdWQWKRqM }}</ref>) is an [[open-standard]] [[file format]] that uses [[Human-readable medium|human-readable]] text to transmit data objects consisting of [[attribute–value pair]]s and [[array data type]]s (or any other [[Serialization |serializable]] value). It is a very common [[data]] format, with a diverse range of applications. Such as serving as replacement for [[XML]] in [[Ajax (programming)|AJAX]] systems.<ref>{{cite web|title=A Modern Reintroduction To AJAX|url=http://www.javascript-coder.com/tutorials/re-introduction-to-ajax.phtml|accessdate=12 April 2017|ref=jajax}}</ref>
In [[computing]], '''JavaScript Object Notation''' ('''JSON''') ({{IPAc-en|ˈ|dʒ|eɪ|s|ən}} "Jason"<ref name ="Pronunciation">{{cite web | title = Doug Crockford "Google Tech Talks: JavaScript: The Good Parts" | date = 7 February 2009 | url = https://www.youtube.com/watch?v=hQVTIJBZook&t=2405 }}</ref><ref name="PronunciationJoke">{{cite web | title = Douglas Crockford: pronouncing | date = Nov 14, 2014 | url = https://www.youtube.com/watch?v=zhVdWQWKRqM }}</ref>) is an [[open-standard]] [[file format]] that uses [[Human-readable medium|human-readable]] text to transmit data objects consisting of [[attribute–value pair]]s and [[array data type]]s (or any other [[Serialization |serializable]] value). It is a very common [[data]] format, with a diverse range of applications, such as serving as replacement for [[XML]] in [[Ajax (programming)|AJAX]] systems.<ref>{{cite web|title=A Modern Reintroduction To AJAX|url=http://www.javascript-coder.com/tutorials/re-introduction-to-ajax.phtml|accessdate=12 April 2017|ref=jajax}}</ref>


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 [[Parsing|parse]] JSON-format data. The official Internet [[media type]] for JSON is <code>application/json</code>. JSON filenames use the extension <code>.json</code>.
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 [[Parsing|parse]] JSON-format data. The official Internet [[media type]] for JSON is <code>application/json</code>. JSON filenames use the extension <code>.json</code>.

Revision as of 20:13, 19 September 2019

JSON
Filename extension
.json
Internet media type
application/json
Type codeTEXT
Uniform Type Identifier (UTI)public.json
Type of formatData interchange
Extended fromJavaScript
StandardSTD 90/RFC 8259, ECMA-404, ISO/IEC 21778:2017
Free format?Yes
Websitejson.org

In computing, JavaScript Object Notation (JSON) (/ˈsən/ "Jason"[1][2]) is an open-standard file format that uses human-readable text to transmit data objects consisting of attribute–value pairs and array data types (or any other serializable value). It is a very common data format, with a diverse range of applications, such as serving as replacement for XML in AJAX systems.[3]

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. The official Internet media type for JSON is application/json. JSON filenames use the extension .json.

Douglas Crockford originally specified the JSON format in the early 2000s. It was first standardized in 2013 in RFC 7158 and ECMA-404.[4] The latest JSON format standard was published in 2017 as RFC 8259, and remains consistent with ECMA-404.[5] That same year, JSON was also standardized as ISO/IEC 21778:2017.[6] The ECMA and ISO standards describes only the allowed syntax, whereas the RFC covers some security and interoperability considerations.[7]

History

Douglas Crockford at the Yahoo Building. (2007)

JSON grew out of a need for stateless, real-time server-to-browser communication protocol without using browser plugins such as Flash or Java applets, the dominant methods used in the early 2000s.[8]

Douglas Crockford first specified and popularized the JSON format.[9] The acronym originated at State Software, a company co-founded by Crockford and others in March 2001. The co-founders agreed to build a system that used standard browser capabilities and provided an abstraction layer for Web developers to create stateful Web applications that had a persistent duplex connection to a Web server by holding two Hypertext Transfer Protocol (HTTP) connections open and recycling them before standard browser time-outs if no further data were exchanged. The co-founders had a round-table discussion and voted whether to call the data format JSML or JSON, as well as under what license type to make it available. Crockford added a clause to the JSON license stating that "The Software shall be used for Good, not Evil," in order to open-source the JSON libraries while mocking corporate lawyers and those who are overly pedantic. Chip Morningstar developed the idea for the State Application Framework at State Software.[10][11] On the other hand, this clause led to license compatibility problems of the JSON license with other open-source licenses.[12]

A precursor to the JSON libraries was used in a children's digital asset trading game project named Cartoon Orbit at Communities.com (the State co-founders had all worked at this company previously) for Cartoon Network, which used a browser side plug-in with a proprietary messaging format to manipulate DHTML elements (this system is also owned by 3DO). Upon discovery of early Ajax capabilities, digiGroups, Noosh, and others used frames to pass information into the user browsers' visual field without refreshing a Web application's visual context, realizing real-time rich Web applications using only the standard HTTP, HTML and JavaScript capabilities of Netscape 4.0.5+ and IE 5+. Crockford then found that JavaScript could be used as an object-based messaging format for such a system. The system was sold to Sun Microsystems, Amazon.com and EDS. The JSON.org[13] website was launched in 2002. In December 2005, Yahoo! began offering some of its Web services in JSON.[14]

JSON was originally intended to be a subset of the JavaScript scripting language (specifically, Standard ECMA-262 3rd Edition—December 1999[15][need quotation to verify]) and is commonly used with Javascript, but it is a language-independent data format. Code for parsing and generating JSON data is readily available in many programming languages. JSON's website lists JSON libraries by language.

Though JSON was originally advertised and believed to be a strict subset of JavaScript and ECMAScript,[16][failed verification] it inadvertently allows some unescaped characters in strings that are illegal in JavaScript and ECMAScript string literals. See Data portability issues below.

JSON itself became an ECMA international standard in 2013 as the ECMA-404 standard.[17] In the same year RFC 7158 used ECMA-404 as reference. In 2014 RFC 7159 became the main reference for JSON's internet uses, superseding RFC 4627 and RFC 7158 (but preserving ECMA-262 and ECMA-404 as main references). ISO/IEC JTC 1/SC 22 published ISO/IEC 21778:2017[6] as an international standard in November 2017. In December 2017, RFC 7159 was made obsolete by RFC 8259.

Data types and syntax

JSON's basic data types are:

  • Number: a signed decimal number that may contain a fractional part and may use exponential E notation, but cannot include non-numbers such as NaN. The format makes no distinction between integer and floating-point. JavaScript uses a double-precision floating-point format for all its numeric values, but other languages implementing JSON may encode numbers differently.
  • String: a sequence of zero or more Unicode characters. Strings are delimited with double-quotation marks and support a backslash escaping syntax.
  • Boolean: either of the values true or false
  • Array: an ordered list of zero or more values, each of which may be of any type. Arrays use square bracket notation with comma-separated elements.
  • Object: an unordered collection of name–value pairs where the names (also called keys) are strings. Since objects are intended to represent associative arrays,[17] it is recommended, though not required,[18] that each key is unique within an object. Objects are delimited with curly brackets and use commas to separate each pair, while within each pair the colon ':' character separates the key or name from its value.
  • null: An empty value, using the word null

Whitespace is allowed and ignored around or between syntactic elements (values and punctuation, but not within a string value). Four specific characters are considered whitespace for this purpose: space, horizontal tab, line feed, and carriage return. In particular, the byte order mark must not be generated by a conforming implementation (though it may be accepted when parsing JSON). JSON does not provide syntax for comments.

Early versions of JSON (such as specified by RFC 4627) required that a valid JSON text must consist of only an object or an array type, which could contain other types within them.

Example

The following example shows a possible JSON representation describing a person.

{
  "firstName": "John",
  "lastName": "Smith",
  "isAlive": true,
  "age": 27,
  "address": {
    "streetAddress": "21 2nd Street",
    "city": "New York",
    "state": "NY",
    "postalCode": "10021-3100"
  },
  "phoneNumbers": [
    {
      "type": "home",
      "number": "212 555-1234"
    },
    {
      "type": "office",
      "number": "646 555-4567"
    },
    {
      "type": "mobile",
      "number": "123 456-7890"
    }
  ],
  "children": [],
  "spouse": null
}

Data portability issues

Template:Contains emoticon Although Douglas Crockford originally asserted that JSON is a strict subset of JavaScript, his specification actually allows valid JSON documents that are invalid JavaScript; JSON allows the Unicode line terminators U+2028 LINE SEPARATOR and U+2029 PARAGRAPH SEPARATOR to appear unescaped in quoted strings, while ECMAScript 2018 and older does not.[19][20] This is a consequence of JSON disallowing only "control characters". For maximum portability, these characters should be backslash-escaped. This subtlety is important when generating JSONP.

JSON exchange in an open ecosystem must be encoded in UTF-8.[5] The encoding supports the full Unicode character set, including those characters outside the Basic Multilingual Plane (U+10000 to U+10FFFF). However, if escaped, those characters must be written using UTF-16 surrogate pairs, a detail missed by some JSON parsers. For example, to include the Emoji character U+1F602 😂 FACE WITH TEARS OF JOY in JSON:

{ "face": "😂" }
// or
{ "face": "\uD83D\uDE02" }

Numbers in JSON are agnostic with regard to their representation within programming languages. While this allows for numbers of arbitrary precision to be serialized, it may lead to portability issues. For example, since no differentiation is made between integer and floating-point values, some implementations may treat 42, 42.0, and 4.2E+1 as the same number, while others may not. The JSON standard make no requirements regarding implementation details such as overflow, underflow, loss of precision, rounding, or signed zeros, but it does recommend to expect no more than IEEE 754 binary64 precision for "good interoperability". There is no inherent precision loss in serializing a machine-level binary representation of a floating-point number (like binary64) into a human-readable decimal representation (like numbers in JSON), and back, since there exist published algorithms to do this exactly and optimally.[21]

Comments were purposefully excluded from JSON. In 2012, Douglas Crockford described his design decision thusly: "I removed comments from JSON because I saw people were using them to hold parsing directives, a practice which would have destroyed interoperability." [22]

Using JSON in JavaScript

As of 2018, all major browsers support at least the fifth edition ECMAScript which provides a method of decoding JSON:[23]

var p = JSON.parse(json_string);

Unsupported native data types

JavaScript syntax defines several native data types that are not included in the JSON standard:[18] Map, Set, Date, Error, Regular Expression, Function, Promise, and undefined.[note 1] These JavaScript data types must be represented by some other data format, with the programs on both ends agreeing on how to convert between the types. As of 2011, there are some de facto standards, e.g., converting from Date to String, but none universally recognized.[24][25] Other languages may have a different set of native types that must be serialized carefully to deal with this type of conversion.

Schema and metadata

JSON Schema

JSON Schema specifies a JSON-based format to define the structure of JSON data for validation, documentation, and interaction control. It provides a contract for the JSON data required by a given application, and how that data can be modified.[26]

JSON Schema is based on the concepts from XML Schema (XSD), but is JSON-based. As in XSD, the same serialization/deserialization tools can be used both for the schema and data; and is self-describing. It is specified in an Internet Draft at the IETF, currently in its 7th draft, which was released on March 18, 2018.[27] There are several validators available for different programming languages,[28] each with varying levels of conformance.

There is no standard file extension, but some have suggested .schema.json.[29]

Example JSON Schema (draft 4):

{
  "$schema": "http://json-schema.org/schema#",
  "title": "Product",
  "type": "object",
  "required": ["id", "name", "price"],
  "properties": {
    "id": {
      "type": "number",
      "description": "Product identifier"
    },
    "name": {
      "type": "string",
      "description": "Name of the product"
    },
    "price": {
      "type": "number",
      "minimum": 0
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "stock": {
      "type": "object",
      "properties": {
        "warehouse": {
          "type": "number"
        },
        "retail": {
          "type": "number"
        }
      }
    }
  }
}

The JSON Schema above can be used to test the validity of the JSON text below:

{
  "id": 1,
  "name": "Foo",
  "price": 123,
  "tags": [
    "Bar",
    "Eek"
  ],
  "stock": {
    "warehouse": 300,
    "retail": 20
  }
}

MIME type

The official MIME type for JSON text is "application/json",[30] and most modern implementations have adopted this.

The unofficial MIME type "text/json" or the content-type "text/javascript" also get legacy support by many service providers, browsers, servers, web applications, libraries, frameworks, and APIs. Notable examples include the Google Search API,[31] Yahoo!,[31][32] Flickr,[31] Facebook API,[33] Lift framework,[34] Dojo Toolkit 0.4,[35] etc.

Object references

The JSON standard does not support object references, but an IETF draft standard for JSON-based object references exists.[36] The Dojo Toolkit supports object references using standard JSON; specifically, the dojox.json.ref module provides support for several forms of referencing including circular, multiple, inter-message, and lazy referencing. Internally both do so by assigning a "$ref" key for such references and resolving it at parse-time; the IETF draft only specifies the URL syntax, but Dojo allows more.[37][38][39]

Alternatively, non-standard solutions exist such as the use of Mozilla JavaScript Sharp Variables. However this functionality became obsolete with JavaScript 1.8.5 and was removed in Firefox version 12.[40]

Applications

JSON-RPC

JSON-RPC is a remote procedure call (RPC) protocol built on JSON, as a replacement for XML-RPC or SOAP. It is a simple protocol that defines only a handful of data types and commands. JSON-RPC lets a system send notifications (information to the server that does not require a response) and multiple calls to the server that can be answered out of order. Example of a JSON-RPC 2.0 request and response using positional parameters.

--> {"jsonrpc": "2.0", "method": "subtract", "params": [42, 23], "id": 1}
<-- {"jsonrpc": "2.0", "result": 19, "id": 1}

AJAJ

Asynchronous JavaScript and JSON (or AJAJ) refers to the same dynamic web page methodology as Ajax, but instead of XML, JSON is the data format. AJAJ is a web development technique that provides for the ability of a webpage to request new data after it has loaded into the web browser. Typically it renders new data from the server in response to user actions on that webpage. For example, what the user types into a search box, client-side code then sends to the server, which immediately responds with a drop-down list of matching database items.

The following JavaScript code is an example of a client using XMLHttpRequest to request data in JSON format from a server. (The server-side programming is omitted; it must be set up to service requests to the url containing a JSON-formatted string.)

var my_JSON_object;
var http_request = new XMLHttpRequest();
http_request.open("GET", url, true);
http_request.responseType = "json";
http_request.onreadystatechange = function () {
  var done = 4, ok = 200;
  if (http_request.readyState === done && http_request.status === ok) {
    my_JSON_object = http_request.response;
  }
};
http_request.send(null);

As a configuration language

While JSON is a data serialization format, it has seen ad hoc usage as a configuration language. In this use case, support for comments and other features have been deemed useful, which has led to several nonstandard JSON supersets being created. Among them HJSON[41], HOCON, and JSON5 (which despite its name, isn't the fifth version of JSON).[42][43]

In 2012, Douglas Crockford had this to say about comments in JSON when used as a configuration language: "I know that the lack of comments makes some people sad, but it shouldn't. Suppose you are using JSON to keep configuration files, which you would like to annotate. Go ahead and insert all the comments you like. Then pipe it through JSMin before handing it to your JSON parser."[22]

Security considerations

JSON is intended as a data serialization format. However, its design as a non-strict subset of JavaScript can lead to the misconception that it is safe to pass JSON texts to the JavaScript eval() function. This is not safe, due to the fact that certain valid JSON texts, specifically those containing U+2028 or U+2029, are actually not valid JavaScript code.[44]

To avoid the many pitfalls caused by executing arbitrary code from the internet, a new function, JSON.parse() was first added to the fifth edition of ECMAScript[45], which as of 2017 is supported by all major browsers. For non-supported browsers, an API-compatible JavaScript library is provided by Douglas Crockford.[46] In addition, the TC39 proposal "Subsume JSON" made ECMAScript a strict JSON superset as of the language's 2019 revision.[47][48]

Various JSON parser implementations have suffered from denial-of-service attack and mass assignment vulnerability.[49][50]

Comparison with other formats

JSON is promoted as a low-overhead alternative to XML as both of these formats have widespread support for creation, reading, and decoding in the real-world situations where they are commonly used.[51] Apart from XML, examples could include CSV and YAML (a superset of JSON). Also, Google Protocol Buffers can fill this role, although it is not a data interchange language.

YAML

YAML version 1.2 is a superset of JSON; prior versions were not strictly compatible. For example, escaping a slash (/) with a backslash (\) is valid in JSON, but was not valid in YAML. Such escaping is common practice when injecting JSON into HTML to protect against cross-site scripting attacks. Also, YAML supports comments, but JSON does not.[42] Nonetheless, many YAML parsers can natively parse the output from many JSON encoders.[52]

XML

XML has been used to describe structured data and to serialize objects. Various XML-based protocols exist to represent the same kind of data structures as JSON for the same kind of data interchange purposes. Data can be encoded in XML in several ways. The most expansive form using tag pairs results in a much larger representation than JSON, but if data is stored in attributes and 'short tag' form where the closing tag is replaced with '/>', the representation is often about the same size as JSON or just a little larger. However, an XML attribute can only have a single value and each attribute can appear at most once on each element.

XML separates "data" from "metadata" (via the use of elements and attributes), while JSON does not have such a concept.

Another key difference is the addressing of values. JSON has objects with a simple "key" → "value" mapping, whereas in XML addressing happens on "nodes", which all receive a unique ID via the XML processor. Additionally, the XML standard defines a common attribute "xml:id", that can be used by the user, to set an ID explicitly.

XML tag names cannot contain any of the characters !"#$%&'()*+,/;<=>?@[\]^`{|}~, nor a space character, and cannot begin with "-", ".", or a numeric digit, whereas JSON keys can (even if quotation mark and reverse solidus must be escaped).[53]

XML values are strings of characters, with no built-in type safety. XML has the concept of schema, that permits strong typing, user-defined types, predefined tags, and formal structure, allowing for formal validation of an XML stream. JSON has strong typing built-in, and has a similar schema concept in JSON Schema.

XML supports comments, but JSON does not.[54]

Samples

JSON sample

{
  "first name": "John",
  "last name": "Smith",
  "age": 25,
  "address": {
    "street address": "21 2nd Street",
    "city": "New York",
    "state": "NY",
    "postal code": "10021"
  },
  "phone numbers": [
    {
      "type": "home",
      "number": "212 555-1234"
    },
    {
      "type": "fax",
      "number": "646 555-4567"
    }
  ],
  "sex": {
    "type": "male"
  }
}

Both of the following examples carry the same kind of information as the JSON example above in different ways, except that XML doesn't carry the data type.

YAML sample

The JSON text above is also entirely valid YAML. YAML also offers an alternative syntax intended to be more human-accessible by replacing nested delimiters like {}, [], and " marks with indentation.[52]

first name: John
last name: Smith
age: 25
address: 
  street address: 21 2nd Street
  city: New York
  state: NY
  postal code: '10021'
phone numbers: 
  - type: home
    number: 212 555-1234
  - type: fax
    number: 646 555-4567
sex: 
  type: male

XML samples

Note that the XML examples below don't encode the data type (e.g. that age is a number), and would need something like a schema to encode the same information as the JSON example above does as is. Note that the tag names are in camelCase, since XML tag names cannot have spaces in them (in contrast to JSON and YAML keys).[53]

<person>
  <firstName>John</firstName>
  <lastName>Smith</lastName>
  <age>25</age>
  <address>
    <streetAddress>21 2nd Street</streetAddress>
    <city>New York</city>
    <state>NY</state>
    <postalCode>10021</postalCode>
  </address>
  <phoneNumbers>
    <phoneNumber>
      <type>home</type>
      <number>212 555-1234</number>
    </phoneNumber>
    <phoneNumber>
      <type>fax</type>
      <number>646 555-4567</number>
    </phoneNumber>
  </phoneNumbers>
  <sex>
    <type>male</type>
  </sex>
</person>

The properties can also be serialized using attributes instead of tags:

<person firstName="John" lastName="Smith" age="25">
  <address streetAddress="21 2nd Street" city="New York" state="NY" postalCode="10021" />
  <phoneNumbers>
    <phoneNumber type="home" number="212 555-1234"/>
    <phoneNumber type="fax" number="646 555-4567"/>
  </phoneNumbers>
  <sex type="male"/>
</person>

See also

  • JSON streaming – on delimiting JSON in stream protocols
  • Comparison of data serialization formats
  • Related formats
    • GeoJSON – an open format for encoding a variety of geographic data structures
    • JSON-LD – JavaScript object notation for linked data, a W3C recommendation
    • JSON-RPC – remote procedure call protocol encoded in JSON
    • JsonML – markup language used to map between XML and JSON
    • S-expression – the comparable LISP format for trees as text.
    • SOAPjr – a hybrid of SOAP and JR (JSON-RPC)
  • Related binary encodings
    • BSON – with data types of specific interest to MongoDB
    • CBOR – loosely based on JSON
    • MessagePack – with data types loosely corresponding with JSON's
    • Smile – based on JSON
    • UBJSON – binary format directly imitating JSON
    • EXI4JSON (EXI for JSON) – representation by means of the Efficient XML Interchange (EXI) standard
  • Implementations:
    • Jackson – JSON processor for Java

Notes

  1. ^ The undefined type was left out of the JSON standard, and one finds suggestions that null be used instead. In fact, the current standard says that for a sparse array such as:
     var v = [0];
     v[3] = 3;
    

    which behaves in JavaScript as if it were:

     var vx = [0, undefined, undefined, 3];
    

    with the undefined entries being only implicit rather than explicit, should translate to JSON as if it were:

     var vx = [0, null, null, 3];
    

    with explicit null fillers for the undefined entries.

    Furthermore, in JavaScript {a: undefined} often behaves the same as {}. Both translate as "{}" in JSON. However undefined as an explicit property value does have use in JavaScript inheritance situations such as:

     var x = {a: 1};
     var xi = Object.create(x);
     xi.a = undefined;
    

    where the inheritance of x's property a is overridden in xi and makes it pretty much behave as if nothing was inherited. JSON.stringify itself ignores inherited values - it only translates the enumerable own properties as given by Object.keys(y). The default stringification, while not encoding inheritance, can (except for undefined values) encode enough of an object to reconstruct it in an environment that knows what inheritance it should have. To encode JavaScript objects that contain explicit undefined values a convention for representing undefined must be established, such as mapping it to the string "UNDEFINED". One can then pass JSON.stringify the optional replacer argument to translate with this convention:

     var y = {a: undefined};
     var ys = JSON.stringify(y,
      function (k, v){return (v === undefined) ? "UNDEFINED" : v});
    

    Converting this JSON back into JavaScript is not as straightforward. While JSON.parse can take an optional reviver argument that is, essentially, the inverse of a replacer, it can't be used in this situation. If that function returns undefined, the JSON.parse logic interprets this to mean to not define a property rather than define one with a undefined value. Instead one has to explicitly post process the result from JSON.parse replacing each "UNDEFINED" with undefined.

References

  1. ^ "Doug Crockford "Google Tech Talks: JavaScript: The Good Parts"". 7 February 2009.
  2. ^ "Douglas Crockford: pronouncing". Nov 14, 2014.
  3. ^ "A Modern Reintroduction To AJAX". Retrieved 12 April 2017.
  4. ^ "Standard ECMA-404". www.ecma-international.org.
  5. ^ a b "The JavaScript Object Notation (JSON) Data Interchange Format". IETF. December 2017. Retrieved 16 February 2018.
  6. ^ a b 14:00-17:00. "ISO/IEC 21778:2017". ISO. Retrieved 2019-07-29. {{cite web}}: |last= has numeric name (help)
  7. ^ Bray, Tim. "JSON Redux AKA RFC8259". Ongoing. Retrieved 16 March 2014.
  8. ^ "Unofficial Java History". Edu4Java. 26 May 2014. Archived from the original (html) on 26 May 2014. Retrieved 30 August 2019. In 1996 , Macromedia launches Flash technology which occupies the space left by Java and ActiveX, becoming the de facto standard for animation on the client side.
  9. ^ "Douglas Crockford — The JSON Saga". YouTube. 28 August 2011. Retrieved 23 September 2016.
  10. ^ "Chip Morningstar Biography". n.d.
  11. ^ "State Software Breaks Through Web App Development Barrier With State Application Framework: Software Lets Developers Create Truly Interactive Applications; Reduces Costs, Development Time and Improves User Experience". PR Newswire. February 12, 2002. Archived from the original on June 5, 2013. Retrieved March 19, 2013. {{cite news}}: Unknown parameter |dead-url= ignored (|url-status= suggested) (help)
  12. ^ Apache and the JSON license on LWN.net by Jake Edge (November 30, 2016)
  13. ^ "JSON". json.org.
  14. ^ Yahoo!. "Using JSON with Yahoo! Web services". Archived from the original on October 11, 2007. Retrieved July 3, 2009.
  15. ^ Crockford, Douglas (May 28, 2009). "Introducing JSON". json.org. Retrieved July 3, 2009.
  16. ^ Douglas Crockford (2016-07-10). "JSON in JavaScript". Archived from the original on 2016-07-10. Retrieved 2016-08-13. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  17. ^ a b "The JSON Data Interchange Format" (PDF). ECMA International. October 2013. Retrieved 23 September 2016.
  18. ^ a b "JSON Web Token (JWT)". IETF. May 2015. Retrieved 23 September 2016.
  19. ^ Holm, Magnus (15 May 2011). "JSON: The JavaScript subset that isn't". The timeless repository. Retrieved 23 September 2016.
  20. ^ "TC39 Proposal: Subsume JSON". ECMA TC39 committee. 22 May 2018.
  21. ^ Andrysco, Marc; Jhala, Ranjit; Lerner, Sorin. "Printing Floating-Point Numbers - An Always Correct Method" (PDF). Retrieved 2019-07-27.
  22. ^ a b Crockford, Douglas (2012-04-30). "Comments in JSON". Archived from the original on 2015-07-04. I removed comments from JSON because I saw people were using them to hold parsing directives, a practice which would have destroyed interoperability. I know that the lack of comments makes some people sad, but it shouldn't. Suppose you are using JSON to keep configuration files, which you would like to annotate. Go ahead and insert all the comments you like. Then pipe it through JSMin before handing it to your JSON parser. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  23. ^ "Standard ECMA-262". ecma-international.org. Retrieved 13 September 2015.
  24. ^ "jquery - Format a Microsoft JSON date? - Stack Overflow". stackoverflow.com. Retrieved 13 September 2015.
  25. ^ "Tales from the Evil Empire - Dates and JSON". asp.net. Retrieved 13 September 2015.
  26. ^ "JSON Schema and Hyper-Schema". json-schema.org. Retrieved 13 September 2015.
  27. ^ "draft-handrews-json-schema-01 - JSON Schema: A Media Type for Describing JSON Documents". json-schema.org/. 2018-03-19. Retrieved 10 February 2019.
  28. ^ "JSON Schema Implementations". json-schema.org. Retrieved 10 February 2019.
  29. ^ "Json Schema file extension". Stack Overflow.
  30. ^ "Media Types". iana.org. Retrieved 13 September 2015.
  31. ^ a b c "Handle application/json & text/json by benschwarz · Pull Request #2 · mislav/faraday-stack". GitHub. Retrieved 13 September 2015.
  32. ^ "Yahoo!, JavaScript, and JSON". ProgrammableWeb. 2005-12-16. Retrieved 13 September 2015.
  33. ^ "Make JSON requests allow text/javascript content by jakeboxer · Pull Request #148 · AFNetworking/AFNetworking". GitHub. Retrieved 13 September 2015.
  34. ^ "lift/Req.scala at master · lift/lift · GitHub". GitHub. Retrieved 13 September 2015.
  35. ^ "BrowserIO.js in legacy/branches/0.4/src/io – Dojo Toolkit". dojotoolkit.org. Retrieved 13 September 2015.
  36. ^ Zyp, Kris (September 16, 2012). Bryan, Paul C. (ed.). "JSON Reference: draft-pbryan-zyp-json-ref-03". Internet Engineering Task Force.
  37. ^ Zyp, Kris. "dojox.json.ref". Dojo.
  38. ^ Zyp, Kris (June 17, 2008). "JSON referencing in Dojo". SitePen. Retrieved July 3, 2009.
  39. ^ von Gaza, Tys (Dec 7, 2010). "JSON referencing in jQuery". NUBUNTU. Archived from the original on May 7, 2015. Retrieved Dec 7, 2010. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  40. ^ "Sharp variables in JavaScript". Mozilla Developer Network. April 4, 2015. Retrieved 21 April 2012.
  41. ^ Edelman, Jason; Lowe, Scott; Oswalt, Matt. Network Programmability and Automation. O'Reilly Media. for data representation you can pick one of the following: YAML, YAMLEX, JSON, JSON5, HJSON, or even pure Python
  42. ^ a b McCombs, Thayne. "Why JSON isn't a good configuration language". Lucid Chart. Retrieved 15 June 2019.
  43. ^ "HOCON (Human-Optimized Config Object Notation)". GitHub. 2019-01-28. Retrieved 2019-08-28. The primary goal is: keep the semantics (tree structure; set of types; encoding/escaping) from JSON, but make it more convenient as a human-editable config file format.
  44. ^ "JSON: The JavaScript subset that isn't". Magnus Holm. Retrieved 16 May 2011.
  45. ^ "ECMAScript Fifth Edition" (PDF). Archived from the original (PDF) on April 14, 2011. Retrieved March 18, 2011. {{cite web}}: Unknown parameter |dead-url= ignored (|url-status= suggested) (help)
  46. ^ "douglascrockford/JSON-js". GitHub. 2019-08-13.
  47. ^ "Subsume JSON: Proposal to make all JSON text valid ECMA-262". Ecma TC39. 23 August 2019. Retrieved 27 August 2019.
  48. ^ "Advance to Stage 4 - tc39/proposal-json-superset". GitHub. May 22, 2018.
  49. ^ "Denial of Service and Unsafe Object Creation Vulnerability in JSON (CVE-2013-0269)". Retrieved January 5, 2016.
  50. ^ "Microsoft .NET Framework JSON Content Processing Denial of Service Vulnerability". Retrieved January 5, 2016.
  51. ^ "JSON: The Fat-Free Alternative to XML". json.org. Retrieved 14 March 2011.
  52. ^ a b "YAML Ain't Markup Language (YAML™) Version 1.2". yaml.org. Retrieved 13 September 2015.
  53. ^ a b "XML 1.1 Specification". World Wide Web Consortium. Retrieved 2019-08-26.
  54. ^ Saternos, Casimir (2014). Client-server web apps with Javascript and Java. p. 45. ISBN 9781449369316.