Difference between revisions of "JSON"
From Wiki @ Karl Jones dot com
Karl Jones (Talk | contribs) (→External links) |
Karl Jones (Talk | contribs) (→See also) |
||
Line 14: | Line 14: | ||
See [[Web service]] and [[Ajax (programming)]]. | See [[Web service]] and [[Ajax (programming)]]. | ||
+ | |||
+ | == JSONLint == | ||
+ | |||
+ | [[JSONLint]] is an online JSON validation service. | ||
== See also == | == See also == | ||
Line 19: | Line 23: | ||
* [[Ajax (programming)]] | * [[Ajax (programming)]] | ||
* [[JavaScript]] | * [[JavaScript]] | ||
+ | * [[JSONLint]] | ||
* [[Parsing]] | * [[Parsing]] | ||
* [[Web service]] | * [[Web service]] |
Revision as of 10:49, 18 April 2016
JSON, or JavaScript Object Notation, is an open standard format that uses human-readable text to transmit data objects consisting of attribute–value pairs.
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).
JSONLint
JSONLint is an online JSON validation service.
See also
External links
- JSON @ Wikipedia