mirror of
https://github.com/neilotoole/sq.git
synced 2024-12-18 13:41:49 +03:00
24 lines
383 B
JSON
24 lines
383 B
JSON
|
{
|
||
|
"first name": "John",
|
||
|
"last name": "Smith",
|
||
|
"age": 25,
|
||
|
"address": {
|
||
|
"street address": "21 2nd Street",
|
||
|
"city": "New York",
|
||
|
"state": "NY",
|
||
|
"postal code": "10021"
|
||
|
},
|
||
|
"phone numbers": [
|
||
|
{
|
||
|
"type": "home",
|
||
|
"number": "212 555-1234"
|
||
|
},
|
||
|
{
|
||
|
"type": "fax",
|
||
|
"number": "646 555-4567"
|
||
|
}
|
||
|
],
|
||
|
"sex": {
|
||
|
"type": "male"
|
||
|
}
|
||
|
}
|