json
{
"id": 1,
"name": "John Doe",
"age": 30,
"city": "New York",
"status": "active",
"hobbies": ["reading", "traveling"],
"salary": 50000,
"isEmployed": true,
"address": {
"street": "123 Main St",
"city": "New York",
"zipCode": "10001",
"coordinates": {
"latitude": 40.7128,
"longitude": -74.0060
}
},
"friends": ["Alice", "Bob", "Charlie"],
"languages": ["English", "Spanish"],
"projects": [
{
"name": "Project Alpha",
"status": "completed"
},
{
"name": "Project Beta",
"status": "in progress"
}
],
"isActive": true,
"skills": ["JavaScript", "React", "Node.js"],
"education": [
{
"degree": "Bachelor of Science",
"major": "Computer Science",
"year": 2015
}
],
"phoneNumbers": ["123-456-7890", "098-765-4321"],
"car": {
"model": "Toyota Camry",
"year": 2020
}
}