JSON, or JavaScript Object Notation, is a standard data interchange format for text-based data transmission and storage. Other serialization formats, including XML, are quite comparable to it in terms of functionality.
JSON's moniker comes from how closely its notation resembles JavaScript's data types.
{
}
[
]
"
"
true
or false
null
: lack of a value{
"company": {
"name": "Cloudyfox",
"login": "cloudyfoxlabs"
},
"repo": {
"name": "internal-server-conf",
"activelyMaintained": true,
"stats": [
{
"type": "stars",
"count": 20
},
{
"type": "forks",
"count": 50
}
]
}
}