JSON (JavaScript Object Notation) is a lightweight data-interchange format that is easy for humans to read and write and easy for machines to parse and generate. JSON formatting refers to the process of organizing JSON data with proper indentation and spacing to make it more readable and easier to understand.
{ "name": "John Doe", "age": 30, "email": "john@example.com", "address": { "street": "123 Main St", "city": "Anytown", "country": "USA" }, "hobbies": ["reading", "hiking", "photography"] }