mirror of
https://github.com/LukeHagar/varsity.git
synced 2025-12-06 04:22:00 +00:00
16 lines
254 B
JSON
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}$"
|
|
}
|
|
}
|
|
}
|