[
  {
    "id": 1,
    "name": "John Doe",
    "email": "john.doe@example.com",
    "age": 30,
    "address": {
      "street": "123 Main St",
      "city": "New York",
      "zipCode": "10001"
    },
    "hobbies": ["reading", "gaming", "cooking"]
  },
  {
    "id": 2,
    "name": "Jane Smith",
    "email": "jane.smith@example.com",
    "age": 25,
    "address": {
      "street": "456 Oak Ave",
      "city": "San Francisco",
      "zipCode": "94102"
    },
    "hobbies": ["hiking", "photography", "reading"]
  },
  {
    "id": 3,
    "name": "Bob Johnson",
    "email": "bob.johnson@example.com",
    "age": 35,
    "address": {
      "street": "789 Pine Rd",
      "city": "Chicago",
      "zipCode": "60601"
    },
    "hobbies": ["sports", "music", "traveling"]
  }
] 