linode · Schema

ImageUpdateRequest

Properties

Name Type Description
label string The label for the image.
description string A description for the image.
View JSON Schema on GitHub

JSON Schema

linode-imageupdaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ImageUpdateRequest",
  "title": "ImageUpdateRequest",
  "type": "object",
  "properties": {
    "label": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128,
      "description": "The label for the image."
    },
    "description": {
      "type": "string",
      "maxLength": 65000,
      "description": "A description for the image."
    }
  }
}