mirror of
https://github.com/LukeHagar/varsity.git
synced 2025-12-06 04:22:00 +00:00
31 lines
581 B
JSON
31 lines
581 B
JSON
{
|
|
"type": "object",
|
|
"required": ["amount", "currency"],
|
|
"properties": {
|
|
"amount": {
|
|
"type": "number",
|
|
"minimum": 0,
|
|
"multipleOf": 0.01
|
|
},
|
|
"currency": {
|
|
"type": "string",
|
|
"pattern": "^[A-Z]{3}$",
|
|
"description": "ISO 4217 currency code"
|
|
},
|
|
"discount": {
|
|
"type": "object",
|
|
"properties": {
|
|
"percentage": {
|
|
"type": "number",
|
|
"minimum": 0,
|
|
"maximum": 100
|
|
},
|
|
"validUntil": {
|
|
"type": "string",
|
|
"format": "date"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|