HTTP & APIs

JSON

JSON (JavaScript Object Notation) is a lightweight key-value format for exchanging data between applications.

Diagram

  JSON Data Format Structure:
  {
    "name": "Rohan Sharma",
    "role": "admin",
    "active": true,
    "skills": ["TypeScript", "System Design"],
    "profile": { "id": 104 }
  }

In Depth

JSON stands for JavaScript Object Notation. It is a standardized text format for storing and exchanging structured data as key-value pairs and arrays.

Related Terms