linode · Schema

Volume

Properties

Name Type Description
id integer The unique ID of this volume.
label string The label of this volume.
status string The current status of this volume.
size integer The size of this volume in GB.
region string The region where this volume is located.
linode_id integer The ID of the Linode this volume is attached to, or null.
linode_label string The label of the Linode this volume is attached to.
filesystem_path string The filesystem path for this volume on the attached Linode.
tags array Tags for this volume.
created string When this volume was created.
updated string When this volume was last updated.
View JSON Schema on GitHub

JSON Schema

linode-volume-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Volume",
  "title": "Volume",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "The unique ID of this volume."
    },
    "label": {
      "type": "string",
      "description": "The label of this volume."
    },
    "status": {
      "type": "string",
      "enum": [
        "creating",
        "active",
        "resizing",
        "deleting"
      ],
      "description": "The current status of this volume."
    },
    "size": {
      "type": "integer",
      "description": "The size of this volume in GB."
    },
    "region": {
      "type": "string",
      "description": "The region where this volume is located."
    },
    "linode_id": {
      "type": "integer",
      "description": "The ID of the Linode this volume is attached to, or null."
    },
    "linode_label": {
      "type": "string",
      "description": "The label of the Linode this volume is attached to."
    },
    "filesystem_path": {
      "type": "string",
      "description": "The filesystem path for this volume on the attached Linode."
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Tags for this volume."
    },
    "created": {
      "type": "string",
      "format": "date-time",
      "description": "When this volume was created."
    },
    "updated": {
      "type": "string",
      "format": "date-time",
      "description": "When this volume was last updated."
    }
  }
}