{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Currency", "type": "object", "properties": { "id": { "type": "integer", "readOnly": true }, "name": { "type": "string", "maxLength": 10 }, "description": { "type": "string", "maxLength": 100 }, "rate": { "type": "string", "format": "decimal", "pattern": "^-?\\d{0,9}(?:\\.\\d{0,6})?$" }, "base": { "type": "boolean" }, "active": { "type": "boolean" } }, "required": [ "name", "rate" ] }