Difference between revisions of "JSON"
From Wiki @ Karl Jones dot com
Karl Jones (Talk | contribs) |
Karl Jones (Talk | contribs) |
||
Line 1: | Line 1: | ||
'''JSON''', or '''JavaScript Object Notation''', is an [[open standard]] format that uses [[Human-readable medium|human-readable]] text to transmit data objects consisting of attribute–value pairs. | '''JSON''', or '''JavaScript Object Notation''', is an [[open standard]] format that uses [[Human-readable medium|human-readable]] text to transmit data objects consisting of attribute–value pairs. | ||
+ | |||
+ | (TO DO: expand, organize, cross-reference, illustrate.) | ||
== Description == | == Description == | ||
− | + | JSON is used primarily to transmit data between a [[Server (computing)|server]] and a [[web application]] | |
JSON is an alternative to [[XML]]. | JSON is an alternative to [[XML]]. |
Revision as of 03:36, 15 September 2015
JSON, or JavaScript Object Notation, is an open standard format that uses human-readable text to transmit data objects consisting of attribute–value pairs.
(TO DO: expand, organize, cross-reference, illustrate.)
Description
JSON is used primarily to transmit data between a server and a web application
JSON is an alternative to XML.
Although originally derived from JavaScript, JSON is a language-independent data format.
Code for parsing and generating JSON data is readily available in many programming languages.
Web services and Ajax
See Web service and Ajax (programming). TO DO: summarize.
See also
External links
- JSON @ Wikipedia