-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample-data.json
More file actions
72 lines (72 loc) · 1.42 KB
/
sample-data.json
File metadata and controls
72 lines (72 loc) · 1.42 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
[
{
"id": 1,
"name": "John Doe",
"email": "john.doe@example.com",
"age": 30,
"active": true,
"score": 95.5,
"address": {
"street": "123 Main St",
"city": "New York",
"zip": "10001"
},
"tags": ["developer", "javascript", "python"]
},
{
"id": 2,
"name": "Jane Smith",
"email": "jane.smith@example.com",
"age": 25,
"active": true,
"score": 88.3,
"address": {
"street": "456 Oak Ave",
"city": "San Francisco",
"zip": "94102"
},
"tags": ["designer", "ui/ux"]
},
{
"id": 3,
"name": "Bob Johnson",
"email": "bob.johnson@example.com",
"age": 35,
"active": false,
"score": 92.7,
"address": {
"street": "789 Pine Rd",
"city": "Seattle",
"zip": "98101"
},
"tags": ["manager", "agile"]
},
{
"id": 4,
"name": "Alice Williams",
"email": "alice.williams@example.com",
"age": 28,
"active": true,
"score": 97.2,
"address": {
"street": "321 Elm St",
"city": "Boston",
"zip": "02101"
},
"tags": ["data-scientist", "machine-learning", "python"]
},
{
"id": 5,
"name": "Charlie Brown",
"email": "charlie.brown@example.com",
"age": 42,
"active": true,
"score": 85.9,
"address": {
"street": "654 Maple Dr",
"city": "Austin",
"zip": "78701"
},
"tags": ["devops", "kubernetes", "docker"]
}
]