-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinput.json
56 lines (56 loc) · 1.23 KB
/
input.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
55
56
{
"transactionSet": "X12-850",
"orderDetails": {
"internalOrderNumber": "ACME-4567",
"orderNumber": "365465413",
"orderType": "drop-ship",
"orderDate": "2022-08-30T14:22:22Z",
"orderMemo": "Thank you for your business",
"orderAdminContact": {
"name": "Marvin Acme",
"address": {
"street1": "123 Main Street",
"city": "Fairfield",
"state": "NJ",
"zip": "07004",
"country": "US"
},
"phone": "973-555-1212",
"email": "marvin@acme.com"
}
},
"shippingDetails": {
"carrier": "FedEx Home Delivery"
},
"shipTo": {
"customerId": "123",
"name": "Wile E Coyote",
"address": {
"street1": "111 Canyon Court",
"city": "Phoenix",
"state": "AZ",
"zip": "85001",
"country": "US"
}
},
"items": [
{
"id": "item-1",
"quantity": 8,
"unitCode": "EA",
"price": 400,
"vendorPartNumber": "VND1234567",
"sku": "ACM/8900-400",
"description": "400 pound anvil"
},
{
"id": "item-2",
"quantity": 4,
"unitCode": "EA",
"price": 125,
"vendorPartNumber": "VND000111222",
"sku": "ACM/1100-001",
"description": "Detonator"
}
]
}