{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ImageRequest", "title": "ImageRequest", "type": "object", "required": [ "disk_id" ], "properties": { "disk_id": { "type": "integer", "description": "The ID of the disk to create the image from." }, "label": { "type": "string", "minLength": 1, "maxLength": 128, "description": "The label for the new image." }, "description": { "type": "string", "maxLength": 65000, "description": "A description for the new image." } } }