-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcreate_batch_request_body.json
53 lines (53 loc) · 1.06 KB
/
create_batch_request_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
{
"$id": "create_batch_request_body",
"title": "create_batch_request_body",
"type": "object",
"additionalProperties": false,
"properties": {
"external_batch_id": {
"allOf": [
{
"title": "se_id",
"type": "string",
"minLength": 1,
"maxLength": 25,
"pattern": "^se(-[a-z0-9]+)+$"
}
]
},
"batch_notes": {
"type": "string",
"minLength": 1
},
"shipment_ids": {
"type": "array",
"items": {
"allOf": [
{
"title": "se_id",
"type": "string",
"minLength": 1,
"maxLength": 25,
"pattern": "^se(-[a-z0-9]+)+$"
}
]
}
},
"rate_ids": {
"type": "array",
"items": {
"type": "string",
"minLength": 1,
"allOf": [
{
"title": "se_id",
"type": "string",
"minLength": 1,
"maxLength": 25,
"pattern": "^se(-[a-z0-9]+)+$"
}
]
}
}
}
}