shipengine-json-schema
Version:
The official JSON Schemas for ShipEngine™
41 lines • 781 B
JSON
{
"$id": "tag_shipment_response_body",
"title": "tag_shipment_response_body",
"type": "object",
"required": [
"shipment_id",
"tag"
],
"additionalProperties": false,
"properties": {
"shipment_id": {
"allOf": [
{
"title": "se_id",
"type": "string",
"minLength": 1,
"maxLength": 25,
"pattern": "^se(-[a-z0-9]+)+$"
}
]
},
"tag": {
"allOf": [
{
"title": "tag",
"type": "object",
"required": [
"name"
],
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"minLength": 1
}
}
}
]
}
}
}