linode · Schema
ImageRequest
Properties
| Name | Type | Description |
|---|---|---|
| disk_id | integer | The ID of the disk to create the image from. |
| label | string | The label for the new image. |
| description | string | A description for the new image. |
JSON Schema
{
"$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."
}
}
}