-
Notifications
You must be signed in to change notification settings - Fork 2
/
bf_tx_schema_pub_draft_rfc1.0.1.json
130 lines (130 loc) · 4.81 KB
/
bf_tx_schema_pub_draft_rfc1.0.1.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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"type": "object",
"properties": {
"smart_contract_ref": {
"type": "object",
"properties": {
"type": { "type": "string" },
"version": { "type": "string" },
"reference": { "type": "string" },
}
},
"date": { "type": "string", "format": "date-time" },
"page_number": { "type": "number" },
"ship_from": {
"type": "object",
"properties": {
"first_name": { "type": "string" },
"last_name": { "type": "string" },
"address": {
"type": "object",
"properties": {
"street_address": { "type": "string" },
"city": { "type": "string" },
"state": { "type": "string" },
"zip_code": { "type": "number" },
"country": { "type": "string" }
}
},
"SID": { "type": "number" },
"FOB": { "type": "number" }
}
},
"ship_to": {
"type": "object",
"properties": {
"first_name": { "type": "string" },
"last_name": { "type": "string" },
"address": {
"type": "object",
"properties": {
"street_address": { "type": "string" },
"city": { "type": "string" },
"state": { "type": "string" },
"zip_code": { "type": "number" },
"country": { "type": "string" }
}
},
"CID": { "type": "number" },
"FOB": { "type": "number" }
}
},
"bill_to": {
"type": "object",
"properties": {
"first_name": { "type": "string" },
"last_name": { "type": "string" },
"address": {
"type": "object",
"properties": {
"street_address": { "type": "string" },
"city": { "type": "string" },
"state": { "type": "string" },
"zip_code": { "type": "number" },
"country": { "type": "string" }
}
}
}
},
"special_instructions": { "type": "string" },
"BOL_NUM": { "type": "number" },
"barcode_space": { "type": "null" },
"carrier": {
"type": "object",
"properties": {
"first_name": { "type": "string" },
"last_name": { "type": "string" },
"SCAC": { "type": "number" },
"trail_number": { "type": "number" },
"seal_number": { "type": "number" },
"pro_number": { "type": "number" },
"terms": { "type": "string" },
"MAS_BOL_IDC": { "type": "number" }
}
},
"cust_order_info": {
"type": "object",
"properties": {
"order_number": { "type": "number" },
"package_number": { "type": "number" },
"weight": { "type": "number" },
"pallet/slip": { "type": "number" },
"additional_info": { "type": "string" },
"total_weight": { "type": "number" },
}
},
"carrier_info": {
"type": "object",
"properties": {
"handling_unit": { "type": "number" },
"quantity": { "type": "number" },
"type": { "type": "number" },
"weight": { "type": "number" },
"acommodity_desc": { "type": "string" },
"hazardous_material_indicator": { "type": "number" },
"NMFC_num": { "type": "number" }
}
},
"rec_stamp": { "type": "null" },
"dec_value": { "type": "number" },
"cod_idc": { "type": "number" },
"ship_sig": { "type": "null" },
"ship_sig_date": { "type": "string", "format": "date-time" },
"trailer_loader": {
"type": "object",
"properties": {
"trail_load_shipper": { "type": "number" },
"trail_load_driver": { "type": "number" }
}
},
"freight_counted": {
"type": "object",
"properties": {
"freight_count_shipper": { "type": "number" },
"freight_count_driver_pallets": { "type": "number" },
"freight_count_driver_pcs": { "type": "number" }
}
},
"carrier_sig_date": { "type": "string", "format": "date-time" }
}
}