-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.json
More file actions
102 lines (102 loc) · 2.14 KB
/
sample.json
File metadata and controls
102 lines (102 loc) · 2.14 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
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"company": "Tech Store Inc",
"timestamp": "2025-01-01T12:00:00Z",
"orders": [
{
"order_id": "ORD001",
"customer": {
"name": "John Smith",
"email": "john@example.com",
"address": {
"street": "123 Main St",
"city": "New York",
"country": "USA"
}
},
"items": [
{
"product": "Laptop",
"brand": "Dell",
"price": 1299.99,
"quantity": 1
},
{
"product": "Mouse",
"brand": "Logitech",
"price": 29.99,
"quantity": 2
}
],
"payment": {
"method": "credit_card",
"status": "completed",
"total": 1359.97
},
"tags": ["priority", "business"]
},
{
"order_id": "ORD002",
"customer": {
"name": "Jane Doe",
"email": "jane@example.com",
"address": {
"street": "456 Oak Ave",
"city": "Los Angeles",
"country": "USA"
}
},
"items": [
{
"product": "Phone",
"brand": "Apple",
"price": 799.99,
"quantity": 1
}
],
"payment": {
"method": "paypal",
"status": "pending",
"total": 799.99
},
"tags": ["standard"]
},
{
"order_id": "ORD003",
"customer": {
"name": "Bob Wilson",
"email": "bob@example.com",
"address": {
"street": "789 Pine Rd",
"city": "Chicago",
"country": "USA"
}
},
"items": [
{
"product": "Keyboard",
"brand": "Microsoft",
"price": 89.99,
"quantity": 1
},
{
"product": "Monitor",
"brand": "Samsung",
"price": 299.99,
"quantity": 1
},
{
"product": "Cable",
"brand": "Amazon Basics",
"price": 15.99,
"quantity": 3
}
],
"payment": {
"method": "credit_card",
"status": "completed",
"total": 437.96
},
"tags": ["bulk", "discount"]
}
]
}