Skip to content
JSON

Nested Objects

Objects within objects for hierarchical data.

#object#nesting

Code

json
{
  "user": {
    "id": 1,
    "name": "Alice",
    "address": {
      "street": "123 Main St",
      "city": "Springfield",
      "geo": { "lat": 39.8, "lng": -89.6 }
    }
  }
}