March 2020
Intermediate to advanced
528 pages
13h 18m
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 on the web and for 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 ...