{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediaconvert/refs/heads/main/json-schema/mediaconvert-api-min-top-rendition-size-schema.json", "title": "MinTopRenditionSize", "description": "Use Min top rendition size to specify a minimum size for the highest resolution in your ABR stack. * The highest resolution in your ABR stack will be equal to or greater than the value that you enter. For example: If you specify 1280x720 the highest resolution in your ABR stack will be equal to or greater than 1280x720. * If you specify a value for Max resolution, the value that you specify for Min top rendition size must be less than, or equal to, Max resolution.", "type": "object", "properties": { "Height": { "allOf": [ { "$ref": "#/components/schemas/__integerMin32Max8192" }, { "xml": { "name": "height" }, "description": "Use Height to define the video resolution height, in pixels, for this rule." } ] }, "Width": { "allOf": [ { "$ref": "#/components/schemas/__integerMin32Max8192" }, { "xml": { "name": "width" }, "description": "Use Width to define the video resolution width, in pixels, for this rule." } ] } } }