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