JSON (JavaScript Object Notation) is a lightweight, text-based data interchange format. It is easy for humans to read and write and easy for machines to parse and generate. JSON is built on two universal data structures:
{}[]JSON supports six value types: string, number, boolean, null, object, and array. It is the dominant format for REST APIs, configuration files, and data storage.
{
"name": "Alice",
"age": 30,
"active": true,
"tags": ["admin", "user"],
"address": null
}