mirror of
https://github.com/LukeHagar/varsity.git
synced 2025-12-06 04:22:00 +00:00
24 lines
396 B
JSON
24 lines
396 B
JSON
{
|
|
"type": "object",
|
|
"required": ["productId", "quantity"],
|
|
"properties": {
|
|
"productId": {
|
|
"type": "integer",
|
|
"format": "int64",
|
|
"minimum": 1
|
|
},
|
|
"quantity": {
|
|
"type": "integer",
|
|
"minimum": 1
|
|
},
|
|
"price": {
|
|
"$ref": "./price-schema.json"
|
|
},
|
|
"discount": {
|
|
"type": "number",
|
|
"minimum": 0,
|
|
"maximum": 1
|
|
}
|
|
}
|
|
}
|