Subject: JSON's Syntax
Author: WebSpider
In response to: What's JSON?
Posted on: 09/21/2013 06:35:14 PM
JSON's structural characters:
1) {
2) }
3) [
4) ]
5) :
6) ,
JSON's basic types:
1) Number -- 123
2) String -- "abc"
3) Boolean -- true or false
4) Array -- [ <any>, ... ]
5) Object -- { "attrName":<any>, ... }
6) null -- <empty>
>
> On 09/21/2013 06:23:30 PM
WebSpider wrote:
JSON stands for JavaScript Object Notation. It is a text-based open standard designed for human-readable data interchange, just like LDIF or XML.
References: