-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.json
More file actions
82 lines (82 loc) · 1.96 KB
/
Copy pathdata.json
File metadata and controls
82 lines (82 loc) · 1.96 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
{
"user": {
"id": 12345,
"name": "John Doe",
"email": "john.doe@example.com",
"is_active": true,
"roles": [
"user",
"admin"
],
"profile": {
"age": 30,
"address": {
"street": "123 Elm Street",
"city": "Springfield",
"state": "IL",
"postal_code": "62701"
},
"phone_numbers": [
"+1-555-1234",
"+1-555-5678"
]
}
},
"products": [
{
"id": "abc123",
"name": "Laptop",
"price": 899.99,
"in_stock": true,
"tags": [
"electronics",
"computers"
],
"specs": {
"processor": "Intel Core i7",
"ram": "16GB",
"storage": "512GB SSD"
}
},
{
"id": "xyz789",
"name": "Smartphone",
"price": 699.99,
"in_stock": false,
"tags": [
"electronics",
"mobile"
],
"specs": {
"processor": "Snapdragon 888",
"ram": "8GB",
"storage": "128GB"
}
}
],
"orders": [
{
"order_id": "order001",
"user_id": 12345,
"product_id": "abc123",
"quantity": 1,
"total_price": 899.99,
"order_date": "2024-09-14T10:00:00Z",
"status": "shipped"
},
{
"order_id": "order002",
"user_id": 12345,
"product_id": "xyz789",
"quantity": 2,
"total_price": 1399.98,
"order_date": "2024-09-15T11:00:00Z",
"status": "pending"
}
],
"meta": {
"page": 1,
"per_page": 10,
"total_results": 50
}
}