mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-28 05:23:56 +03:00
24 lines
406 B
JSON
24 lines
406 B
JSON
|
{
|
||
|
"firstName": "John",
|
||
|
"lastName": "Smith",
|
||
|
"isAlive": true,
|
||
|
"age": 27,
|
||
|
"address": {
|
||
|
"streetAddress": "21 2nd Street",
|
||
|
"city": "New York",
|
||
|
"state": "NY",
|
||
|
"postalCode": "10021-3100"
|
||
|
},
|
||
|
"phoneNumbers": [
|
||
|
{
|
||
|
"type": "home",
|
||
|
"number": "212 555-1234"
|
||
|
},
|
||
|
{
|
||
|
"type": "office",
|
||
|
"number": "646 555-4567"
|
||
|
}
|
||
|
],
|
||
|
"children": [],
|
||
|
"spouse": null
|
||
|
}
|