Json stands for JavaScript Object Notation. JSON is an open-standard file format that uses human-readable text to transmit data objects consisting of attribute–value pairs and array data types and is language independent. It is derived from javascript. The official Internet media type for JSON is application/json. JSON filenames use the extension .json. JSON was created because there was a need for light weight data interchange format. There are other formats also like XML,YAML, HOCON but there was a need for less verbose light weight data interchange format. JSON fulfills all these requirements. Douglas Crockford originally specified the JSON format in the […]