JSON
JSON
JSON stands for JavaScript Object Notation. It is a human-readable structure that allows data to be transmitted between software systems.
JSON is structured in key-value pairs with objects or arrays. What this means is that for each property, the key can have a value such as "colour": "brown" or it can have an array (list of values), such as "colourList": ["red", "blue", "brown", "black"] or even an object which contains its key-value pairs, such as "colourObject": {"r": 120, "g": 123, "b": 90}.
This file format allows for easy data transmission between any system developed in any language and has become the basis for API communication between many platforms, products, tools, and apps.
Given below is an example of a JSON file:
{
  "colour": "brown",
  "colourList": [
    "red",
    "blue",
    "brown",
    "black"
  ],
  "colourObject": {	
	"r": 120,
	"g": 123,
	"b": 90
  }
}
https://aeriontech.wpenginepowered.com/wp-content/uploads/2021/03/Aerion-Logo-Vector-1_583-1.png
Connect with us

Subscribe to our newsletter today to receive updates on the latest news, releases and special offers. We respect your privacy. Your information is safe.

©2023 Aerion Technologies. All rights reserved | Terms of Service | Privacy Policy