Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

JSON

From Wikipedia, the free encyclopedia
(Redirected fromJson)
Open standard file format and data interchange
"Json" redirects here. For people with similar names, seeJ Son.

JavaScript Object Notation
The JSON logo is a Möbius strip
The JSON logo is aMöbius strip
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
Open format?Yes
Websitejson.org

JSON (JavaScript Object Notation, pronounced/ˈsən/ or/ˈˌsɒn/) is anopen standard file format anddata interchange format that useshuman-readable text to store and transmit data objects consisting ofname–value pairs andarrays (or otherserializable values). It is a commonly used data format with diverse uses inelectronic data interchange, including that ofweb applications withservers.

JSON is alanguage-independent data format. It was derived fromJavaScript, but many modernprogramming languages include code to generate andparse JSON-format data. JSON filenames use the extension.json.

Douglas Crockford originally specified the JSON format in the early 2000s.[1] He andChip Morningstar sent the first JSON message in April 2001.

Naming and pronunciation

[edit]

The 2017international standard (ECMA-404 and ISO/IEC 21778:2017) specifies that "JSON" is "pronounced/ˈ.sən/, as in 'Jason and TheArgonauts'".[2][3] The first (2013) edition of ECMA-404 did not address the pronunciation.[4] TheUNIX and Linux System Administration Handbook states, "Douglas Crockford, who named and promoted the JSON format, says it's pronounced like the name Jason. But somehow, 'JAY-sawn'[note 1] seems to have become more common in the technical community."[5] Crockford said in 2011, "There's a lot of argument about how you pronounce that, but I strictly don't care."[1]

Standards

[edit]

After RFC 4627 had been available as its "informational" specification since 2006, JSON was first standardized in 2013, asECMA-404.[4] RFC 8259, published in 2017, is the current version of theInternet Standard STD 90, and it remains consistent with ECMA-404.[6] That same year, JSON was also standardized asISO/IEC 21778:2017.[2] TheECMA andISO/IEC standards describe only the allowed syntax, whereas the RFC covers some security and interoperability considerations.[7]

History

[edit]
Douglas Crockford at the Yahoo Building (2007)

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

Crockford first specified and popularized the JSON format.[1] The acronym originated at State Software, a company cofounded by Crockford and others in March 2001. The cofounders agreed to build a system that used standard browser capabilities and provided anabstraction layer for Web developers to create stateful Web applications that had a persistent duplex connection to a Web server by holding twoHypertext Transfer Protocol (HTTP) connections open and recycling them before standard browser time-outs if no further data were exchanged. The cofounders had a round-table discussion and voted on whether to call the data format JSML (JavaScript Markup Language) or JSON (JavaScript Object Notation), as well as under whatlicense type to make it available. The JSON.org[9] website was launched in 2001. In December 2005,Yahoo! began offering some of itsWeb services in JSON.[10]

A precursor to the JSON libraries was used in a children's digital asset trading game project namedCartoon Orbit at Communities.com[citation needed] which used a browser side plug-in with a proprietary messaging format to manipulateDHTML elements. Upon discovery of earlyAjax 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 Internet Explorer 5+. Crockford then found that JavaScript could be used as an object-based messaging format for such a system. The system was sold toSun Microsystems,Amazon.com, andEDS.

JSON was based on asubset of theJavaScript scripting language (specifically, StandardECMA-262 3rd Edition—December 1999[11]) and is commonly used with JavaScript, but it is alanguage-independent data format. Code forparsing and generating JSON data is readily available in manyprogramming languages. JSON's website lists JSONlibraries by language.

In October 2013,Ecma International published the first edition of its JSON standard ECMA-404.[4] That same year,RFC 7158 used ECMA-404 as a reference. In 2014,RFC 7159 became the main reference for JSON's Internet uses, supersedingRFC 4627 andRFC 7158 (but preserving ECMA-262 and ECMA-404 as main references). In November 2017,ISO/IEC JTC 1/SC 22 published ISO/IEC 21778:2017[2] as an international standard. On December 13, 2017, theInternet Engineering Task Force obsoletedRFC 7159 when it publishedRFC 8259, which is the current version of theInternet Standard STD 90.[12][13]

Crockford added a clause to the JSON license stating, "The Software shall be used for Good, not Evil", in order toopen-source the JSON libraries while mocking corporate lawyers and those who are overly pedantic. On the other hand, this clause led tolicense compatibility problems of the JSON license with otheropen-source licenses sinceopen-source software andfree software usually imply no restrictions on the purpose of use.[14]

Syntax

[edit]

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

{"first_name":"John","last_name":"Smith","is_alive":true,"age":27,"address":{"street_address":"21 2nd Street","city":"New York","state":"NY","postal_code":"10021-3100"},"phone_numbers":[{"type":"home","number":"212 555-1234"},{"type":"office","number":"646 555-4567"}],"children":["Catherine","Thomas","Trevor"],"spouse":null}

Character encoding

[edit]

Although Crockford originally asserted that JSON is a strict subset ofJavaScript andECMAScript,[15] his specification actually allows valid JSON documents that are not valid JavaScript; JSON allows theUnicode line terminatorsU+2028 LINE SEPARATOR andU+2029 PARAGRAPH SEPARATOR to appear unescaped in quoted strings, while ECMAScript 2018 and older do not.[16][17] This is a consequence of JSON disallowing only "control characters". For maximum portability, these characters are backslash-escaped.

JSON exchange in an open ecosystem must be encoded inUTF-8.[6] The encoding supports the full Unicode character set, including those characters outside theBasic Multilingual Plane (U+0000 to U+FFFF). However, if escaped, those characters must be written usingUTF-16 surrogate pairs. For example, to include theEmoji characterU+1F610 😐NEUTRAL FACE in JSON:

{"face":"😐"}// or{"face":"\uD83D\uDE10"}

JSON became a strict subset of ECMAScript as of the language's 2019 revision.[17][18]

Data types

[edit]

JSON's basic data types are:

  • Number: a signed decimal number that may contain a fractional part and may use exponentialE notation but cannot include non-numbers such asNaN. The format makes no distinction between integer and floating-point. JavaScript usesIEEE-754double-precision floating-point format for all its numeric values (later also supportingBigInt[19]), but other languages implementing JSON may encode numbers differently.
  • String: a sequence ofzero or moreUnicode characters. Strings are delimited with double quotation marks and support a backslashescaping syntax.
  • Boolean: either of the valuestrue orfalse
  • Array: anordered list of zero or more elements, each of which may be of any type. Arrays usesquare bracket notation with comma-separated elements.
  • Object: a collection ofname–value pairs where the names (also called keys) are strings. The current ECMA standard states, "The JSON syntax does not impose any restrictions on the strings used as names, does not require that name strings be unique, and does not assign any significance to the ordering of name/value pairs."[20] Objects are delimited withcurly 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 wordnull

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, andcarriage return. In particular, thebyte order mark must not be generated by a conforming implementation (though it may be accepted when parsing JSON). JSON does not provide syntax forcomments.[21]

Early versions of JSON (such as specified byRFC 4627) required that a valid JSON text must consist of only an object or an array type, which could contain other types within them. This restriction was dropped inRFC 7158, where a JSON text was redefined as any serialized value.

Numbers in JSON are agnostic with regard to their representation within programming languages. While this allows for numbers ofarbitrary 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 treat42,42.0, and4.2E+1 as the same number, while others may not. The JSON standard makes no requirements regarding implementation details such asoverflow,underflow, loss of precision, rounding, orsigned zeros, but it does recommend expecting no more thanIEEE 754binary64 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.[22]

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

JSON disallows "trailing commas", acomma after the last value inside a data structure.[23] Trailing commas are a common feature ofJSON derivatives to improve ease of use.[24]

Interoperability

[edit]

RFC 8259 describes certain aspects of JSON syntax that, while legal per the specifications, can cause interoperability problems.

  • Certain JSON implementations only accept JSON texts representing an object or an array. For interoperability, applications interchanging JSON should transmit messages that are objects or arrays.
  • The specifications allow JSON objects that contain multiple members with the same name. The behavior of implementations processing objects with duplicate names is unpredictable. For interoperability, applications should avoid duplicate names when transmitting JSON objects.
  • The specifications specifically say that the order of members in JSON objects is not significant. For interoperability, applications should avoid assigning meaning to member ordering even if the parsing software makes that ordering visible.
  • While the specifications place no limits on the magnitude or precisions of JSON number literals, the widely used JavaScript implementation stores them as IEEE754 "binary64" quantities. For interoperability, applications should avoid transmitting numbers that cannot be represented in this way, for example, 1E400 or 3.141592653589793238462643383279.
  • While the specifications do not constrain the character encoding of the Unicode characters in a JSON text, the vast majority of implementations assumeUTF-8 encoding; for interoperability, applications should always and only encode JSON messages in UTF-8.
  • The specifications do not forbid transmitting byte sequences that incorrectly represent Unicode characters. For interoperability, applications should transmit messages containing no such byte sequences.
  • The specification does not constrain how applications go about comparing Unicode strings. For interoperability, applications should always perform such comparisons code unit by code unit.

In 2015, the IETF published RFC 7493, describing the "I-JSON Message Format", a restricted profile of JSON that constrains the syntax and processing of JSON to avoid, as much as possible, these interoperability issues.

Semantics

[edit]

While JSON provides a syntactic framework for data interchange, unambiguous data interchange also requires agreement between producer and consumer on the semantics of specific use of the JSON syntax.[25] One example of where such an agreement is necessary is the serialization of data types that are not part of the JSON standard, for example, dates andregular expressions.

Metadata and schema

[edit]

The officialMIME type for JSON text isapplication/json,[26] and most modern implementations have adopted this. Legacy MIME types includetext/json,text/x-json, andtext/javascript.[27] The standard filename extension is .json.[28]

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.[29] JSON Schema is based on the concepts fromXML Schema (XSD) but is JSON-based. As in XSD, the same serialization/deserialization tools can be used both for the schema and data, and it is self-describing. It is specified in anInternet Draft at the IETF, with the latest version as of 2024 being "Draft 2020-12".[30] There are several validators available for different programming languages,[31] each with varying levels of conformance.

The JSON standard does not support objectreferences, but anIETF draft standard for JSON-based object references exists.[32]

Uses

[edit]

JSON-RPC is aremote procedure call (RPC) protocol built on JSON, as a replacement forXML-RPC orSOAP. 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.

Asynchronous JavaScript and JSON (or AJAJ) refers to the samedynamic web page methodology asAjax, but instead ofXML, JSON is the data format. AJAJ is a web development technique that provides for the ability of aweb page to request new data after it has loaded into theweb browser. Typically, it renders new data from the server in response to user actions on that web page. For example, what the user types into asearch box,client-side code then sends to the server, which immediately responds with adrop-down list of matchingdatabase items.

JSON has seenad hoc usage as aconfiguration language. However, it does not supportcomments.In 2012, Douglas Crockford, JSON creator, 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[33] before handing it to your JSON parser."[21]

MongoDB uses JSON-like data for itsdocument-oriented database.

Some relational databases, such as PostgreSQL and MySQL, have added support for native JSON data types. This allows developers to store JSON data directly in a relational database without having to convert it to another data format.

Safety

[edit]

JSON being a subset of JavaScript can lead to the misconception that it is safe to pass JSON texts to the JavaScripteval() function. This is not safe, due to certain valid JSON texts, specifically those containingU+2028 LINE SEPARATOR orU+2029 PARAGRAPH SEPARATOR, not being valid JavaScript code until JavaScript specifications were updated in 2019, and so older engines may not support it.[34] 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,[35] which as of 2017 is supported by all major browsers. For non-supported browsers, an API-compatible JavaScript library is provided byDouglas Crockford.[36] In addition, the TC39 proposal "Subsume JSON" madeECMAScript a strict JSON superset as of the language's 2019 revision.[17][18] Various JSON parser implementations have suffered fromdenial-of-service attack andmass assignment vulnerability.[37][38]

Alternatives

[edit]
See also:Comparison of data-serialization 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.[39] Apart from XML, examples could includeCSV andsupersets of JSON.Google Protocol Buffers can fill this role, although it is not a data interchange language.CBOR has a superset of the JSON data types, but it is not text-based. Ion is also a superset of JSON, with a wider range of primary types, annotations, comments, and allowing trailing commas.[40]

XML

[edit]
Main article: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 (in character count) 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" to "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 attributexml: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 backslash must be escaped).[41]

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

XML supports comments, while JSON does not.[42][21]

Supersets

[edit]

Support forcomments and other features have been deemed useful, which has led to several nonstandard JSONsupersets being created. Among them are HJSON,[43] HOCON, and JSON5 (which despite its name, is not the fifth version of JSON).[44][45]

YAML

[edit]
See also:YAML § JSON

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.[46] YAML supports comments, while JSON does not.[46][44][21]

CSON

[edit]

CSON ("CoffeeScript Object Notation") usessignificant indentation, unquoted keys, and assumes an outer object declaration. It was used for configuringGitHub'sAtom text editor.[47][48][49]

There is also an unrelated project calledCSON ("Cursive Script Object Notation") that is more syntactically similar to JSON.[50]

HOCON

[edit]

HOCON ("Human-Optimized Config Object Notation") is a format forhuman-readable data, and a superset of JSON.[51]The uses of HOCON are:

  • It is primarily used in conjunction with thePlay framework,[52] and is developed byLightbend.
  • It is also supported as a configuration format for .NET projects via Akka.NET[53][54] andPuppet.[55]
  • TIBCO Streaming:[56] HOCON is the primary configuration file format for the TIBCO Streaming[57] family of products (StreamBase, LiveView, and Artifact Management Server) as of TIBCO Streaming Release 10.[58]
  • It is also the primary configuration file format for several subsystems of Exabeam Advanced Analytics.[59]
  • Jitsi uses it as the "new" config system and.properties-Files as fallback[60][61]

JSON5

[edit]

JSON5 ("JSON5 Data Interchange Format") is an extension of JSON syntax that, just like JSON, is also valid JavaScript syntax. The specification was started in 2012 and finished in 2018 with version 1.0.0.[62] The main differences to JSON syntax are:

  • Optional trailing commas
  • Unquoted object keys
  • Single quoted and multiline strings
  • Additional number formats
  • Comments

JSON5 syntax is supported in some software as an extension of JSON syntax, for instance inSQLite.[63]

JSONC

[edit]

JSONC (JSON with Comments) is a subset of JSON5 used in Microsoft'sVisual Studio Code:[64]

  • supports single line comments (//) and block comments (/* */)
  • accepts trailing commas, but they are discouraged and the editor will display a warning

Derivatives

[edit]

Several serialization formats have been built on or from the JSON specification. Examples include

  • GeoJSON, a format designed for representing simple geographical features[65][66]

See also

[edit]

Notes

[edit]
  1. ^/ˈˌsɒn/, assuming thecot-caught merger

References

[edit]
  1. ^abc"Douglas Crockford: The JSON Saga". YouTube. August 28, 2011. RetrievedFebruary 21, 2022. Transcript:Transcript Vids at theWayback Machine (archived 2019-10-30)
  2. ^abc"ISO/IEC 21778:2017".ISO. RetrievedJuly 29, 2019.
  3. ^"ECMA-404: The JSON Data Interchange Syntax" (2nd ed.).Ecma International. December 2017. p. iii, footnote.Archived(PDF) from the original on October 27, 2019. RetrievedApril 29, 2024.
  4. ^abc"ECMA-404: The JSON Data Interchange Format" (1st ed.).Ecma International. October 2013.Archived(PDF) from the original on November 1, 2013. RetrievedNovember 20, 2023.
  5. ^Nemeth, Evi; Snyder, Garth; Hein, Trent R.; Whaley, Ben; Mackin, Dan (2017)."19: Web Hosting".UNIX and Linux System Administration Handbook (5th ed.). Addison-Wesley Professional.ISBN 9780134278292. RetrievedOctober 29, 2019.
  6. ^abBray, T. (December 2017). Bray, T (ed.)."The JavaScript Object Notation (JSON) Data Interchange Format". IETF.doi:10.17487/RFC8259.S2CID 263868313. RetrievedFebruary 16, 2018.{{cite journal}}:Cite journal requires|journal= (help)
  7. ^Bray, Tim."JSON Redux AKA RFC7159".Ongoing. RetrievedMarch 16, 2014.
  8. ^"Unofficial Java History".Edu4Java. 26 May 2014. Archived fromthe original on 26 May 2014. Retrieved30 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. ^"JSON".json.org.
  10. ^Yahoo!."Using JSON with Yahoo! Web services". Archived fromthe original on October 11, 2007. RetrievedJuly 3, 2009.
  11. ^Crockford, Douglas (May 28, 2009)."Introducing JSON". json.org. RetrievedJuly 3, 2009.It is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 1999.
  12. ^Bray, Tim (December 2017)."History for draft-ietf-jsonbis-rfc7159bis-04".IETF Datatracker. Internet Engineering Task Force. RetrievedOctober 24, 2019.2017-12-13 [...] RFC published
  13. ^Bray, Tim (December 13, 2017)."RFC 8259 - The JavaScript Object Notation (JSON) Data Interchange Format".IETF Datatracker. Internet Engineering Task Force. RetrievedOctober 24, 2019.Type: RFC - Internet Standard (December 2017; Errata); Obsoletes RFC 7159; Also known as STD 90
  14. ^"Apache and the JSON license" on LWN.net by Jake Edge (November 30, 2016).
  15. ^Douglas Crockford (July 10, 2016)."JSON in JavaScript". Archived fromthe original on July 10, 2016. RetrievedAugust 13, 2016.JSON is a subset of the object literal notation of JavaScript.
  16. ^Holm, Magnus (May 15, 2011)."JSON: The JavaScript subset that isn't". The timeless repository. Archived fromthe original on May 13, 2012. RetrievedSeptember 23, 2016.
  17. ^abc"Subsume JSON: Proposal to make all JSON text valid ECMA-262". Ecma TC39. August 23, 2019. RetrievedAugust 27, 2019.
  18. ^ab"Advance to Stage 4 - tc39/proposal-json-superset".GitHub. May 22, 2018.
  19. ^"BigInt - MDN Web doc glossary".Mozilla. RetrievedOctober 18, 2020.
  20. ^ECMA-404, 2nd ed., p. 3: "The JSON syntax does not impose any restrictions on the strings used as names, does not require that name strings be unique, and does not assign any significance to the ordering of name/value pairs."
  21. ^abcdeCrockford, Douglas (April 30, 2012)."Comments in JSON". Archived fromthe original on July 4, 2015. RetrievedAugust 30, 2019.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 throughJSMin before handing it to your JSON parser.
  22. ^Andrysco, Marc; Jhala, Ranjit; Lerner, Sorin."Printing Floating-Point Numbers - An Always Correct Method"(PDF). RetrievedJuly 27, 2019.
  23. ^"Trailing commas - JavaScript | MDN".developer.mozilla.org. September 12, 2023. RetrievedDecember 16, 2023.
  24. ^"JSON5". json5. Archived fromthe original on November 29, 2020. RetrievedDecember 16, 2020.
  25. ^ECMA-404, 2nd ed., p. iii: "The JSON syntax is not a specification of a complete data interchange. Meaningful data interchange requires agreement between a producer and consumer on the semantics attached to a particular use of the JSON syntax. What JSON does provide is the syntactic framework to which such semantics can be attached"
  26. ^"Media Types".iana.org. RetrievedSeptember 13, 2015.
  27. ^"Correct Content-Type Header for JSON".ReqBin. January 13, 2023. RetrievedMarch 23, 2024.
  28. ^Bray, Tim (December 2017). Bray, T. (ed.)."11. IANA Considerations".RFC 8259: The JavaScript Object Notation (JSON) Data Interchange Format.IETF.doi:10.17487/RFC8259.S2CID 263868313.
  29. ^"JSON Schema and Hyper-Schema".json-schema.org. RetrievedJune 8, 2021.
  30. ^"JSON Schema - Specification Links".json-schema.org. RetrievedMarch 22, 2024.
  31. ^"JSON Schema Implementations".json-schema.org. Archived fromthe original on June 16, 2021. RetrievedJune 8, 2021.
  32. ^Zyp, Kris (September 16, 2012). Bryan, Paul C. (ed.)."JSON Reference: draft-pbryan-zyp-json-ref-03".Internet Engineering Task Force.
  33. ^Crockford, Douglas (May 16, 2019)."JSMin". RetrievedAugust 12, 2020.JSMin [2001] is a minification tool that removes comments and unnecessary whitespace from JavaScript files.
  34. ^"JSON: The JavaScript subset that isn't". Magnus Holm. Archived fromthe original on May 13, 2012. RetrievedMay 16, 2011.
  35. ^"ECMA-262: ECMAScript Language Specification" (5th ed.). December 2009.Archived(PDF) from the original on April 14, 2011. RetrievedMarch 18, 2011.
  36. ^"douglascrockford/JSON-js".GitHub. August 13, 2019.
  37. ^"Denial of Service and Unsafe Object Creation Vulnerability in JSON (CVE-2013-0269)". RetrievedJanuary 5, 2016.
  38. ^"Microsoft .NET Framework JSON Content Processing Denial of Service Vulnerability". Archived fromthe original on November 6, 2018. RetrievedJanuary 5, 2016.
  39. ^"JSON: The Fat-Free Alternative to XML". json.org. RetrievedMarch 14, 2011.
  40. ^"Amazon Ion".Amazon.Archived from the original on August 12, 2024. RetrievedAugust 26, 2024.
  41. ^"XML 1.1 Specification". World Wide Web Consortium. RetrievedAugust 26, 2019.
  42. ^Saternos, Casimir (2014).Client-server web apps with Javascript and Java. "O'Reilly Media, Inc.". p. 45.ISBN 9781449369316.
  43. ^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
  44. ^abMcCombs, Thayne (July 16, 2018)."Why JSON isn't a good configuration language". Lucid Chart. RetrievedJune 15, 2019.
  45. ^"HOCON (Human-Optimized Config Object Notation)".GitHub. January 28, 2019. RetrievedAugust 28, 2019.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.
  46. ^ab"YAML Ain't Markup Language (YAML™) Version 1.2".yaml.org. RetrievedSeptember 13, 2015.
  47. ^Dohm, Lee (2014)."CoffeeScript Object Notation".The Big Book ofAtom.Archived from the original on April 22, 2023. RetrievedApril 29, 2024.
  48. ^"Basic Customization".Atom Flight Manual.GitHub.Archived from the original on April 29, 2024. RetrievedApril 29, 2024.
  49. ^"CSON". Bevry. December 20, 2023.Archived from the original on April 23, 2024. RetrievedApril 29, 2024 – viaGitHub.
  50. ^Seonghoon, Kang (July 1, 2021)."CSON".Archived from the original on December 16, 2023. RetrievedFebruary 27, 2023 – viaGitHub.
  51. ^"config/HOCON.md at master · lightbend/config".GitHub. RetrievedAugust 5, 2021.
  52. ^"Config File - 2.5.x".www.playframework.com. RetrievedAugust 5, 2021.
  53. ^Akka.NET HOCON Docs
  54. ^"Akka.NET Documentation | Akka.NET Documentation".getakka.net. RetrievedAugust 5, 2021.
  55. ^"Managing HOCON configuration files with Puppet". Archived fromthe original on February 11, 2017. RetrievedMarch 4, 2023.
  56. ^"StreamBase Documentation".docs.streambase.com. RetrievedAugust 5, 2021.
  57. ^"Configuration Guide".docs.streambase.com. RetrievedAugust 5, 2021.
  58. ^"StreamBase New and Noteworthy Archive".docs.streambase.com. RetrievedAugust 5, 2021.
  59. ^"Exabeam Advanced Analytics Release Notes". Archived fromthe original on October 20, 2020. RetrievedMarch 4, 2023.
  60. ^JITSI Project."Config phase 1".GitHub. RetrievedFebruary 16, 2021.
  61. ^JITSI Project."reference.conf".GitHub. RetrievedFebruary 16, 2021.
  62. ^"The JSON5 Data Interchange Format". RetrievedJune 25, 2022.
  63. ^SQLite."JSON Functions And Operators". RetrievedJune 25, 2023.
  64. ^"JSON with Comments - JSON editing in Visual Studio Code".Visual Studio Code.Microsoft. RetrievedApril 29, 2024.
  65. ^Butler, H.; Daly, M.; Doyle, A.; Gillies, Sean; Schaub, T.; Hagen, Stefan (August 2016)."RFC 7946 - The GeoJSON Format".IETF Datatracker. RetrievedJune 17, 2022.
  66. ^"GeoJSON".geojson.org. RetrievedAugust 7, 2022.
  67. ^"JSON-LD 1.1".World Wide Web Consortium. July 16, 2020. RetrievedJune 17, 2022.
  68. ^"JSON-LD - JSON for Linking Data".json-ld.org. RetrievedAugust 7, 2022.
  69. ^"JSON-RPC".jsonrpc.org. RetrievedJune 17, 2022.
  70. ^"JsonML (JSON Markup Language)".JsonML.org. RetrievedJune 17, 2022.
  71. ^McKamey, Stephen (June 14, 2022),JsonML, retrievedAugust 7, 2022
  72. ^"FasterXML/smile-format-specification: New home for Smile format".GitHub. RetrievedJune 17, 2022.
  73. ^Gupta, Ayush (February 10, 2019)."Understanding Smile — A data format based on JSON".Code with Ayush. RetrievedAugust 7, 2022.
  74. ^"Universal Binary JSON Specification – The universally compatible format specification for Binary JSON".ubjson.org. RetrievedJune 17, 2022.
  75. ^"UBJSON - JSON for Modern C++".json.nlohmann.me. RetrievedAugust 7, 2022.

External links

[edit]
JSON at Wikipedia'ssister projects
Human readable
Binary
Standards ofEcma International
Application interfaces
File systems (tape)
File systems (disk)
Graphics
Programming languages
Radio link interfaces
Other
List of Ecma standards (1961 – present)
1–9999
10000–19999
20000–29999
30000+
International
National
Retrieved from "https://en.wikipedia.org/w/index.php?title=JSON&oldid=1280215194"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp