{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "AccountCodeUpdateRequest", "type": "object", "properties": { "code": { "type": "string", "minLength": 1, "maxLength": 50 }, "description": { "type": "string", "minLength": 1, "maxLength": 200 }, "account_type": { "allOf": [ { "$ref": "#/components/schemas/AccountTypeEnum" } ], "minimum": -2147483648, "maximum": 2147483647 }, "parent": { "type": "integer", "nullable": true } }, "required": [ "code", "description" ] }