-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathschema.json
54 lines (54 loc) · 1.07 KB
/
schema.json
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
{
"email": "[email protected]",
"order": {
"order_id": "900000021",
"shipping_tracking_id": "7999888891",
"shipping_cost": {
"currency_code": "USD",
"units": 99,
"nanos": 100
},
"shipping_address": {
"street_address": "Model Town",
"city": "Lahore",
"state": "Punjab",
"country": "Pakistan",
"zip_code": "54000"
},
"items": [
{
"item": {
"product_id": "ABS3894723894",
"quantity": 100
},
"cost": {
"currency_code": "USD",
"units": 99,
"nanos": 6600000000
}
},
{
"item": {
"product_id": "LPO3894723894",
"quantity": 10
},
"cost": {
"currency_code": "USD",
"units": 99,
"nanos": 8700000000
}
},
{
"item": {
"product_id": "KKK3894723894",
"quantity": 90
},
"cost": {
"currency_code": "USD",
"units": 99,
"nanos": 7500000000
}
}
]
}
}