What is JSON?
JSON (JavaScript Object Notation) is a lightweight, text-based data interchange format derived from JavaScript object syntax, standardised as ECMA-404 and RFC 8259. It represents data as key-value pairs (objects) and ordered lists (arrays), with six primitive types: strings, numbers, booleans (true/false), and null. JSON is the dominant format for REST APIs, web application configuration, and data exchange between services. Its strict syntax — quoted keys, explicit brackets and braces, no comments — makes it easy to parse mechanically but verbose to read and write by hand.