-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.json
More file actions
92 lines (92 loc) · 2.38 KB
/
example.json
File metadata and controls
92 lines (92 loc) · 2.38 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
{
"user": {
"id": 12345,
"name": "John Doe",
"email": "john.doe@example.com",
"age": 30,
"isActive": true,
"role": "developer",
"metadata": null,
"preferences": {
"theme": "dark",
"notifications": true,
"language": "en"
}
},
"orders": [
{
"orderId": "ORD-001",
"date": "2024-01-15",
"status": "delivered",
"items": [
{
"productId": "PROD-101",
"name": "Laptop",
"quantity": 1,
"price": 999.99
},
{
"productId": "PROD-102",
"name": "Mouse",
"quantity": 2,
"price": 29.99
}
],
"total": 1059.97,
"shipping": {
"address": "123 Main St",
"city": "New York",
"zipCode": "10001",
"country": "USA"
}
},
{
"orderId": "ORD-002",
"date": "2024-02-20",
"status": "pending",
"items": [
{
"productId": "PROD-201",
"name": "Keyboard",
"quantity": 1,
"price": 79.99
}
],
"total": 79.99,
"shipping": {
"address": "456 Oak Ave",
"city": "San Francisco",
"zipCode": "94102",
"country": "USA"
}
}
],
"stats": {
"totalOrders": 2,
"totalSpent": 1139.96,
"averageOrderValue": 569.98,
"lastOrderDate": "2024-02-20"
},
"tags": [
"premium",
"verified",
"newsletter"
],
"contacts": {
"emergency": {
"name": "Jane Doe",
"phone": "+1-555-0123",
"relationship": "spouse"
},
"friends": [
{
"name": "Alice Smith",
"email": "alice@example.com"
},
{
"name": "Bob Johnson",
"email": "bob@example.com"
}
]
}
}