JSON
JSON stands for JavaScript Object Notation, a lightweight, text-based data interchange format. It is language independent and easy for humans to read and write, while remaining simple for machines to parse and generate. JSON uses a data model composed of objects represented by key-value pairs and arrays, enabling the concise representation of structured data such as configurations, responses from web services, and data payloads exchanged between systems.
JSON syntax consists of objects enclosed in braces, arrays in brackets, strings in double quotes, and the
Typical use cases include client–server communication for web APIs, configuration files, and data interchange in microservices.