{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "PaymentMethod", "type": "object", "properties": { "id": { "type": "integer", "readOnly": true }, "name": { "type": "string", "maxLength": 100 }, "description": { "type": "string", "nullable": true }, "active": { "type": "boolean" } }, "required": [ "name" ] }