Files
varsity/test/shared/schemas/order-item-schema.json
2025-10-01 20:01:42 +00:00

19 lines
308 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"
}
}
}