JSON (JavaScript Object Notation)

JavaScript Object Notation, is an open standard format that uses human-readable text to transmit data objects consisting of attribute–value pairs. It is the most widely used format for interchanging data on the web.

JSON is capable of representing numbers, booleans, strings, null, and arrays (ordered sequences of values) and objects (string-value mappings) composed of these values (or of other arrays and objects).

JSON

{"employees":[
    {"Name":"Mathew", "Location":"US"}, 
    {"Name":"Joy", "Location":"UK"},
    {"Name":"Raj", "Location":"UAE"}
]}
shanidkv's picture