shipengine-json-schema
Version:
The official JSON Schemas for ShipEngine™
22 lines • 399 B
JSON
{
"$id": "create_tag_response_body",
"title": "create_tag_response_body",
"type": "object",
"additionalProperties": false,
"allOf": [
{
"title": "tag",
"type": "object",
"required": [
"name"
],
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"minLength": 1
}
}
}
]
}