-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathexample_2.json
More file actions
34 lines (34 loc) · 804 Bytes
/
example_2.json
File metadata and controls
34 lines (34 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"persons": [
{
"firstName": "Ali",
"lastName": "Hasan",
"age": 19,
"address": {
"streetAddress": "GT Road",
"city": "Lahore"
},
"phoneNumbers": [
{"type": "home","number": "0423-111111"},
{"type": "mobile","number": "0333-222222"}
],
"salary": null,
"isMarried": false
},
{
"firstName": "Ahmad",
"lastName": "Hamza",
"age": 28,
"address": {
"streetAddress": "M. A. Jinnah Road",
"city": "Karachi"
},
"phoneNumbers": [
{"type": "home","number": "021-111111"},
{"type": "mobile","number": "0333-3232323"}
],
"salary": 80000,
"isMarried": true
}
]
}