JSON

From Just Solve the File Format Problem
(Difference between revisions)
Jump to: navigation, search
m
(See also)
(30 intermediate revisions by 3 users not shown)
Line 2: Line 2:
 
|formattype=electronic
 
|formattype=electronic
 
|subcat=Serialization
 
|subcat=Serialization
 +
|thiscat=JSON
 
|extensions={{ext|json}}
 
|extensions={{ext|json}}
 
|mimetypes={{mimetype|application/json}}
 
|mimetypes={{mimetype|application/json}}
 
}}
 
}}
'''JSON''' (JavaScript Object Notation) is widely used by web applications to communicate between a web page front end and a server back end. While it is named after [[JavaScript]], there are libraries for many other programming and scripting languages to let them use this format as well. The geospatial format [[GeoJSON]] is based on JSON.
+
'''JSON''' (JavaScript Object Notation) is widely used by web applications, mobile apps, and other programs to communicate between different systems (such as between a client and server). While it is named after [[JavaScript]], there are libraries for many other programming and scripting languages to let them use this format as well. The geospatial format [[GeoJSON]] is based on JSON, as is the remote-procedure-call protocol [[JSON-RPC]] and the [[JSON-LD]] linked-data format. The IBM standard of [[JSONx]] is an [[XML]] implementation of JSON. [[I-JSON]] is a restricted profile of JSON for Internet use. [[JSON Web Tokens]], [[JSON Web Encryption]], and [[JSON Web Signatures]] are JSON-based formats for security-related functions.
 +
 
 +
== Format ==
  
 
JSON is a very simply-defined format for representing data in text-based form using a few simple types, including two "compound types" which can be nested:
 
JSON is a very simply-defined format for representing data in text-based form using a few simple types, including two "compound types" which can be nested:
  
* '''number''': A decimal number, optionally including a decimal point or exponential notation. Leading zeroes are not allowed unless the only number before the decimal point is a single zero, or the number is equal to zero. (Encompasses data types various other formats and programming languages may call ''int'', ''float'', ''double'', ''long'', etc.)
+
* '''number''': A decimal number, optionally including a decimal point or exponential notation. Leading zeroes are not allowed unless the only number before the decimal point is a single zero, or the number is equal to zero. (Other formats and programming languages may call these ''int'', ''float'', ''double'', ''long'', etc.)
  
* '''string''': A string of ([[Unicode]]) characters surrounded by double quotes ("). The only characters not allowed directly (without escaping) are double quotes, backslashes, or control characters; a backslash can be used to precede a quote or backslash used as a character within the string, as well as \b for backspace, \f for formfeed, \n for newline, \r for carriage return, \t for tab, and \u followed by 4 hexadecimal digits for encoding any Unicode character in the 0000-FFFF range. (Encompasses data types various other formats and programming languages may call ''string'' or ''array of char'').
+
* '''string''': A string of ([[Unicode]]) characters surrounded by double quotes ("). The only characters not allowed directly (without escaping) are double quotes, backslashes, or control characters; a backslash can be used to precede a quote or backslash used as a character within the string, as well as \b for backspace, \f for formfeed, \n for newline, \r for carriage return, \t for tab, and \u followed by 4 hexadecimal digits for encoding any Unicode character in the 0000-FFFF range. (Other formats and programming languages may call these ''string'' or ''array of char'').
  
 
* ''true'', ''false'', or ''nil'' are permitted as typeless values. (Other formats and programming languages may put these into boolean or pointer types.)
 
* ''true'', ''false'', or ''nil'' are permitted as typeless values. (Other formats and programming languages may put these into boolean or pointer types.)
Line 18: Line 21:
  
 
* '''array''': An ordered collection of values, which can each be any of the JSON data types, and are separated by commas and surrounded by square brackets []. (Other formats and programming languages may call these ''arrays'' or ''lists''.)
 
* '''array''': An ordered collection of values, which can each be any of the JSON data types, and are separated by commas and surrounded by square brackets []. (Other formats and programming languages may call these ''arrays'' or ''lists''.)
 +
 +
== JSONP ==
 +
 +
'''JSONP''' is a variant of JSON, "padded" with additional [[JavaScript]] code to permit the entire data set to be a valid piece of JS code able to be imported via a <code>&lt;script&gt;</code> statement for execution. Generally the extra code will be a function call encompassing the JSON data as its parameter, but sometimes it will be a variable assignment or other code. This gets around security restrictions in browser implementations of JavaScript which limit use of external data loaded from other sites (script statements can reference outside URLs), making it both very powerful and very dangerous if misused.
 +
 +
== JSON Pointer ==
 +
 +
JSON Pointer (described in RFC 6901) is a syntax for referencing a specific value within a JSON document.
  
 
== See also ==
 
== See also ==
 +
* [[CoffeeScript-Object-Notation]]
 +
* [[Cursive Script Object Notation]]
 +
* [[GeoJSON]]
 +
* [[Hjson]]
 +
* [[I-JSON]]
 +
* [[JMESPath]] [http://jmespath.org/]
 
* [[JSON API]]
 
* [[JSON API]]
 +
* [[JSON-LD]]
 +
* [[JSON Merge Patch]] (RFC 7396)
 +
* [[JSON Patch]]
 +
* [[JSON Pointer]] (RFC 6901)
 +
* [[JSON-RPC]]
 +
* [[JSON Table Schema]]
 +
* [[JSONx]]
 +
For formats based on JSON, see [[:Category:JSON based file formats]].
  
 
== Specs and schemas ==
 
== Specs and schemas ==
Line 27: Line 52:
 
* [http://json-schema.org/ JSON Schema]
 
* [http://json-schema.org/ JSON Schema]
 
* [http://www.ecma-international.org/publications/standards/Ecma-404.htm ECMA-404]
 
* [http://www.ecma-international.org/publications/standards/Ecma-404.htm ECMA-404]
 +
* RFC 4627
  
 
== Sample data ==
 
== Sample data ==
Line 32: Line 58:
 
* [http://parltrack.euwiki.org/dumps/ Data from European Parliament in JSON form] (Source: [http://parltrack.euwiki.org/ ParlTrack])
 
* [http://parltrack.euwiki.org/dumps/ Data from European Parliament in JSON form] (Source: [http://parltrack.euwiki.org/ ParlTrack])
  
== Other Links ==
+
== Utilities ==
  
 
* [http://pro.jsonlint.com/ Linter/Validator]
 
* [http://pro.jsonlint.com/ Linter/Validator]
* [http://www.infoq.com/news/2013/04/JSON-Validation?utm_medium=referral&utm_source=t.co JSON Validation Roundup]
 
 
* [http://www.pal-blog.de/entwicklung/perl/2013/quick-json-pretty-reformatter-json-tidy.html Quick JSON pretty reformatter / JSON-tidy]
 
* [http://www.pal-blog.de/entwicklung/perl/2013/quick-json-pretty-reformatter-json-tidy.html Quick JSON pretty reformatter / JSON-tidy]
 +
* [https://github.com/ChimeraCoder/gojson gojson: A simple command-line tool for manipulating JSON for use in developing Go code] (generates [[Go]] structures from JSON)
 +
* [http://golang.org/pkg/encoding/json/ Go package to encode/decode JSON]
 +
* [http://stedolan.github.io/jq/ jq: command line JSON processor]
 +
* [http://papaparse.com/ PapaParse: in-browser conversions between CSV and JSON]
 +
* [http://textract.readthedocs.org/en/latest/ Textract: extract text from various document formats including JSON]
 +
 +
== Other links ==
 +
 +
* [[Wikipedia:JSON|Wikipedia: JSON]]
 +
* [[Wikipedia:JSONP|Wikipedia: JSONP]]
 +
* [http://www.infoq.com/news/2013/04/JSON-Validation?utm_medium=referral&utm_source=t.co JSON Validation Roundup]
 +
* [http://stackoverflow.com/questions/2669690/why-does-google-prepend-while1-to-their-json-responses Why does Google prepend while(1); to their JSON responses?]
 +
* [http://www.w3.org/TR/csv2json/ Generating JSON from tabular data on the Web (W3C)]
 +
* [http://seriot.ch/parsing_json.html Parsing JSON is a Minefield] - in test with 30 JSON parsers no two parsers showed the same behaviour
 +
 +
[[Category:Metaformats]]
 +
[[Category:JSON based file formats]]

Revision as of 14:27, 21 February 2018

File Format
Name JSON
Ontology
Extension(s) .json
MIME Type(s) application/json

JSON (JavaScript Object Notation) is widely used by web applications, mobile apps, and other programs to communicate between different systems (such as between a client and server). While it is named after JavaScript, there are libraries for many other programming and scripting languages to let them use this format as well. The geospatial format GeoJSON is based on JSON, as is the remote-procedure-call protocol JSON-RPC and the JSON-LD linked-data format. The IBM standard of JSONx is an XML implementation of JSON. I-JSON is a restricted profile of JSON for Internet use. JSON Web Tokens, JSON Web Encryption, and JSON Web Signatures are JSON-based formats for security-related functions.

Contents

Format

JSON is a very simply-defined format for representing data in text-based form using a few simple types, including two "compound types" which can be nested:

  • number: A decimal number, optionally including a decimal point or exponential notation. Leading zeroes are not allowed unless the only number before the decimal point is a single zero, or the number is equal to zero. (Other formats and programming languages may call these int, float, double, long, etc.)
  • string: A string of (Unicode) characters surrounded by double quotes ("). The only characters not allowed directly (without escaping) are double quotes, backslashes, or control characters; a backslash can be used to precede a quote or backslash used as a character within the string, as well as \b for backspace, \f for formfeed, \n for newline, \r for carriage return, \t for tab, and \u followed by 4 hexadecimal digits for encoding any Unicode character in the 0000-FFFF range. (Other formats and programming languages may call these string or array of char).
  • true, false, or nil are permitted as typeless values. (Other formats and programming languages may put these into boolean or pointer types.)
  • object: An associative array consisting of names and values, where the name and value are separated by a colon (:), the name/value pairs are separated by commas, and the whole object is surrounded by curly braces {}. The name is a (double-quoted) string, and the value can be any of the data types in JSON including another object. There is no inherent ordering to the values of an object. (Other formats and programming languages may call these associative arrays, hashes, or dictionaries.)
  • array: An ordered collection of values, which can each be any of the JSON data types, and are separated by commas and surrounded by square brackets []. (Other formats and programming languages may call these arrays or lists.)

JSONP

JSONP is a variant of JSON, "padded" with additional JavaScript code to permit the entire data set to be a valid piece of JS code able to be imported via a <script> statement for execution. Generally the extra code will be a function call encompassing the JSON data as its parameter, but sometimes it will be a variable assignment or other code. This gets around security restrictions in browser implementations of JavaScript which limit use of external data loaded from other sites (script statements can reference outside URLs), making it both very powerful and very dangerous if misused.

JSON Pointer

JSON Pointer (described in RFC 6901) is a syntax for referencing a specific value within a JSON document.

See also

For formats based on JSON, see Category:JSON based file formats.

Specs and schemas

Sample data

Utilities

Other links

Personal tools
Namespaces

Variants
Actions
Navigation
Toolbox