mirror of
https://github.com/LukeHagar/varsity.git
synced 2025-12-06 04:22:00 +00:00
35 lines
823 B
JSON
35 lines
823 B
JSON
{
|
|
"description": "Order creation data",
|
|
"required": true,
|
|
"content": {
|
|
"application/json": {
|
|
"schema": {
|
|
"type": "object",
|
|
"required": ["items", "shippingAddress"],
|
|
"properties": {
|
|
"items": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "../schemas/order-item-schema.json"
|
|
},
|
|
"minItems": 1
|
|
},
|
|
"shippingAddress": {
|
|
"$ref": "../schemas/address-schema.json"
|
|
},
|
|
"billingAddress": {
|
|
"$ref": "../schemas/address-schema.json"
|
|
},
|
|
"paymentMethod": {
|
|
"$ref": "../schemas/payment-method-schema.json"
|
|
},
|
|
"notes": {
|
|
"type": "string",
|
|
"maxLength": 500
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|