[
  {
    "customer_id": 101,
    "name": "Alice Johnson",
    "address": {
      "city": "Boston",
      "state": "MA",
      "zip": "02101"
    },
    "orders": [
      {"order_id": 1001, "amount": 250.00, "date": "2024-01-15"},
      {"order_id": 1004, "amount": 89.99, "date": "2024-01-18"}
    ]
  },
  {
    "customer_id": 102,
    "name": "Bob Smith",
    "address": {
      "city": "Seattle",
      "state": "WA",
      "zip": "98101"
    },
    "orders": [
      {"order_id": 1002, "amount": 175.50, "date": "2024-01-16"},
      {"order_id": 1015, "amount": 415.00, "date": "2024-01-29"}
    ]
  },
  {
    "customer_id": 103,
    "name": "Carol Williams",
    "address": {
      "city": "Chicago",
      "state": "IL",
      "zip": "60601"
    },
    "orders": [
      {"order_id": 1003, "amount": 320.00, "date": "2024-01-17"}
    ]
  }
]
