linode · Schema

VolumeUpdateRequest

Properties

Name Type Description
label string The new label for the volume.
tags array Updated tags for the volume.
View JSON Schema on GitHub

JSON Schema

linode-volumeupdaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VolumeUpdateRequest",
  "title": "VolumeUpdateRequest",
  "type": "object",
  "properties": {
    "label": {
      "type": "string",
      "minLength": 1,
      "maxLength": 32,
      "description": "The new label for the volume."
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Updated tags for the volume."
    }
  }
}