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

16 lines
254 B
JSON

{
"type": "object",
"required": ["amount", "currency"],
"properties": {
"amount": {
"type": "number",
"minimum": 0,
"multipleOf": 0.01
},
"currency": {
"type": "string",
"pattern": "^[A-Z]{3}$"
}
}
}