71 lines
1.5 KiB
JSON
71 lines
1.5 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://nure.ua/itroi/freight-schema.json",
|
|
"title": "Freight management schema",
|
|
"description": "Describes domain objects of freights",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"id": {
|
|
"type": "integer",
|
|
"minimum": 1
|
|
},
|
|
"name": {
|
|
"type": "string",
|
|
"minLength": 3,
|
|
"maxLength": 128
|
|
},
|
|
"description": {
|
|
"type": "string",
|
|
"maxLength": 500
|
|
},
|
|
"weight_kg": {
|
|
"type": "number",
|
|
"exclusiveMinimum": 0,
|
|
"exclusiveMaximum": 4294967296
|
|
},
|
|
"dimensions": {
|
|
"type": "object",
|
|
"properties": {
|
|
"width_cm": {
|
|
"type": "number",
|
|
"minimum": 1,
|
|
"maximum": 150000
|
|
},
|
|
"height_cm": {
|
|
"type": "number",
|
|
"minimum": 1,
|
|
"maximum": 150000
|
|
},
|
|
"length_cm": {
|
|
"type": "number",
|
|
"minimum": 1,
|
|
"maximum": 150000
|
|
}
|
|
},
|
|
"required": [
|
|
"width_cm",
|
|
"height_cm",
|
|
"length_cm"
|
|
]
|
|
},
|
|
"status": {
|
|
"type": "string",
|
|
"enum": [
|
|
"PENDING",
|
|
"IN_TRANSIT",
|
|
"DELIVERED"
|
|
]
|
|
}
|
|
},
|
|
"required": [
|
|
"id",
|
|
"name",
|
|
"weight_kg",
|
|
"dimensions",
|
|
"status"
|
|
]
|
|
}
|
|
}
|