forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnested-ascii.json
More file actions
89 lines (89 loc) Β· 2.01 KB
/
nested-ascii.json
File metadata and controls
89 lines (89 loc) Β· 2.01 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"users": [
{
"id": 1,
"name": "Alice Johnson",
"profile": {
"email": "[email protected]",
"age": 28,
"address": {
"street": "456 Oak Ave",
"city": "Boston",
"state": "MA",
"zip": "02101",
"coordinates": {
"lat": 42.3601,
"lng": -71.0589
}
},
"preferences": {
"notifications": true,
"theme": "dark",
"language": "en"
}
},
"posts": [
{
"id": 101,
"title": "First Post",
"content": "Hello world!",
"tags": ["intro", "welcome"],
"likes": 42,
"comments": [
{"user": "bob", "text": "Great post!", "timestamp": 1609459200},
{"user": "charlie", "text": "Welcome!", "timestamp": 1609462800}
]
},
{
"id": 102,
"title": "Second Post",
"content": "Another update",
"tags": ["update", "news"],
"likes": 87,
"comments": []
}
]
},
{
"id": 2,
"name": "Bob Smith",
"profile": {
"email": "[email protected]",
"age": 35,
"address": {
"street": "789 Pine Rd",
"city": "Seattle",
"state": "WA",
"zip": "98101",
"coordinates": {
"lat": 47.6062,
"lng": -122.3321
}
},
"preferences": {
"notifications": false,
"theme": "light",
"language": "en"
}
},
"posts": [
{
"id": 201,
"title": "Tech Talk",
"content": "Discussing new technologies",
"tags": ["tech", "discussion"],
"likes": 156,
"comments": [
{"user": "alice", "text": "Interesting!", "timestamp": 1609466400}
]
}
]
}
],
"metadata": {
"version": "1.0",
"timestamp": 1609459200,
"total": 2,
"cached": false
}
}