mirror of
https://github.com/LukeHagar/varsity.git
synced 2025-12-06 04:22:00 +00:00
24 lines
458 B
JSON
24 lines
458 B
JSON
{
|
|
"type": "object",
|
|
"required": ["id", "status", "items"],
|
|
"properties": {
|
|
"id": {
|
|
"type": "string",
|
|
"pattern": "^ORD-[0-9]{8}$"
|
|
},
|
|
"status": {
|
|
"type": "string",
|
|
"enum": ["pending", "processing", "shipped", "delivered", "cancelled"]
|
|
},
|
|
"items": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "./order-item-schema.json"
|
|
}
|
|
},
|
|
"total": {
|
|
"$ref": "./price-schema.json"
|
|
}
|
|
}
|
|
}
|