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.
View JSON Schema on GitHub

JSON Schema

linode-imagerequest-schema.json Raw ↑
{
  "$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."
    }
  }
}