Basic JSON Examplesbeginner

Nested Address Profile JSON Example

A beginner-friendly nested object that introduces structure without becoming overly deep or complex.

Real-world use case: Use this when teaching nested JSON or modeling a person with grouped address data.
1{
2 "userId": "usr_1024",
3 "fullName": "Maya Patel",
4 "address": {
5 "line1": "221 Market Street",
6 "city": "Bengaluru",
7 "country": "IN"
8 }
9}

Where this shape shows up in production

Profile forms
CRM records
Address validation demos

Related examples