-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathget_manifest_by_id_response_body.json
125 lines (125 loc) · 2.85 KB
/
get_manifest_by_id_response_body.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
{
"$id": "get_manifest_by_id_response_body",
"title": "get_manifest_by_id_response_body",
"type": "object",
"required": [
"manifest_id",
"form_id",
"created_at",
"ship_date",
"shipments",
"warehouse_id",
"submission_id",
"carrier_id",
"manifest_download",
"label_ids"
],
"additionalProperties": false,
"allOf": [
{
"title": "manifest",
"type": "object",
"additionalProperties": false,
"properties": {
"manifest_id": {
"allOf": [
{
"title": "se_id",
"type": "string",
"minLength": 1,
"maxLength": 25,
"pattern": "^se(-[a-z0-9]+)+$"
}
]
},
"form_id": {
"allOf": [
{
"title": "se_id",
"type": "string",
"minLength": 1,
"maxLength": 25,
"pattern": "^se(-[a-z0-9]+)+$"
}
]
},
"created_at": {
"type": "string",
"format": "date-time",
"minLength": 1
},
"ship_date": {
"type": "string",
"format": "date-time",
"minLength": 1
},
"shipments": {
"type": "integer",
"format": "int32",
"minimum": 1
},
"label_ids": {
"type": "array",
"items": {
"allOf": [
{
"title": "se_id",
"type": "string",
"minLength": 1,
"maxLength": 25,
"pattern": "^se(-[a-z0-9]+)+$"
}
]
}
},
"warehouse_id": {
"allOf": [
{
"title": "se_id",
"type": "string",
"minLength": 1,
"maxLength": 25,
"pattern": "^se(-[a-z0-9]+)+$"
}
]
},
"submission_id": {
"type": "string",
"minLength": 1
},
"carrier_id": {
"allOf": [
{
"title": "se_id",
"type": "string",
"minLength": 1,
"maxLength": 25,
"pattern": "^se(-[a-z0-9]+)+$"
}
]
},
"manifest_download": {
"allOf": [
{
"title": "manifest_download",
"type": "object",
"additionalProperties": false,
"properties": {
"href": {
"allOf": [
{
"title": "url",
"type": "string",
"format": "url",
"minLength": 1
}
]
}
}
}
]
}
}
}
]
}