5 ms·
Yes: { "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { "price": {
by itafroma 7y ago
Yes:
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"price": {
"type": "number",
"multipleOf": 0.01,
"minimum": 0
},
"currency": {
"type": "string",
"enum": ["EUR", "USD", "GBP"],
"default": "EUR"
}
}
}