JSON Formatter Tool
The JSON data format is a collection of key-value pairs, similar to objects and dictionaries in JavaScript. The key must be a string, and the value can be any valid JSON data type (string, number, object, array, boolean, or null). JSON objects are enclosed in curly braces {}, with key-value pairs separated by commas and keys and values separated by colons.
{
"name": "John Doe",
"age": 30,
"isStudent": false,
"courses": ["Math", "English", "Computer Science"],
"address": {
"street": "123 Main St",
"city": "Anytown",
"state": "CA",
"zip": "12345"
}
}
This JSON object describes a person, including their name, age, whether they are a student, the courses they are taking, and their address information.