shipengine-json-schema
Version:
The official JSON Schemas for ShipEngine™
43 lines • 982 B
JSON
{
"$id": "remove_from_batch_request_body",
"title": "remove_from_batch_request_body",
"type": "object",
"additionalProperties": false,
"allOf": [
{
"title": "modify_batch",
"type": "object",
"additionalProperties": false,
"properties": {
"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": {
"allOf": [
{
"title": "se_id",
"type": "string",
"minLength": 1,
"maxLength": 25,
"pattern": "^se(-[a-z0-9]+)+$"
}
]
}
}
}
}
]
}