{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "ExpenseLineCreditCard", "type": "object", "properties": { "id": { "type": "integer", "readOnly": true }, "name": { "type": "string", "maxLength": 255 }, "number": { "type": "string", "pattern": "^[0-9]{4}$", "maxLength": 19 }, "type": { "allOf": [ { "$ref": "#/components/schemas/CreditCardTypeEnum" } ], "minimum": -2147483648, "maximum": 2147483647 } } }