JSON Editor
JSON Viewer
{
"name": "John Doe",
"age": 30,
"email": "[email protected]",
"isActive": true,
"skills": [
"JavaScript",
"Python",
"HTML",
"CSS"
],
"address": {
"street": "123 Main St",
"city": "New York",
"zipCode": "10001"
},
"projects": [
{
"name": "Project Alpha",
"status": "completed",
"budget": 50000
},
{
"name": "Project Beta",
"status": "in_progress",
"budget": 75000
}
]
}