{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mainframe-modernization/refs/heads/main/json-structure/amazon-mainframe-modernization-record-length-structure.json", "name": "RecordLength", "description": "The length of the records in the data set.", "type": "object", "properties": { "max": { "allOf": [ { "$ref": "#/components/schemas/Integer" }, { "description": "The maximum record length. In case of fixed, both minimum and maximum are the same." } ] }, "min": { "allOf": [ { "$ref": "#/components/schemas/Integer" }, { "description": "The minimum record length of a record." } ] } }, "required": [ "max", "min" ] }