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

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"
}
}
}
}
}