linode · Schema

TagRequest

Properties

Name Type Description
label string The tag label.
linodes array Linode IDs to tag.
domains array Domain IDs to tag.
volumes array Volume IDs to tag.
nodebalancers array NodeBalancer IDs to tag.
View JSON Schema on GitHub

JSON Schema

linode-tagrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TagRequest",
  "title": "TagRequest",
  "type": "object",
  "required": [
    "label"
  ],
  "properties": {
    "label": {
      "type": "string",
      "minLength": 3,
      "maxLength": 100,
      "description": "The tag label."
    },
    "linodes": {
      "type": "array",
      "items": {
        "type": "integer"
      },
      "description": "Linode IDs to tag."
    },
    "domains": {
      "type": "array",
      "items": {
        "type": "integer"
      },
      "description": "Domain IDs to tag."
    },
    "volumes": {
      "type": "array",
      "items": {
        "type": "integer"
      },
      "description": "Volume IDs to tag."
    },
    "nodebalancers": {
      "type": "array",
      "items": {
        "type": "integer"
      },
      "description": "NodeBalancer IDs to tag."
    }
  }
}