September 2017
Beginner to intermediate
562 pages
13h 46m
English
JavaScript Object Notation (JSON) is a lightweight data-interchange format. JSON is self describing and easy for humans to read and write. It is the most commonly used data format in the web and RESTful web services.
The following is a simple example of the JSON format, describing customer group data containing two customer groups with customer group IDs of 10 and 20, with the additional Description and PaymentTermId fields:
{ "CustomerGroupId":"10", "Description":"Wholesales customers", "PaymentTermId":"Net30"},{ "CustomerGroupId":"20", "Description":"Retail customers", "PaymentTermId":"Receipt"}
Another little complex example of the JSON data format describing personal details is shown here. The following example represents personal ...