linode · Schema

SupportTicketRequest

Properties

Name Type Description
summary string The summary for the ticket.
description string The full description.
linode_id integer The ID of the related Linode.
domain_id integer The ID of the related domain.
nodebalancer_id integer The ID of the related NodeBalancer.
volume_id integer The ID of the related volume.
lke_cluster_id integer The ID of the related LKE cluster.
database_id integer The ID of the related database.
View JSON Schema on GitHub

JSON Schema

linode-supportticketrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SupportTicketRequest",
  "title": "SupportTicketRequest",
  "type": "object",
  "required": [
    "summary",
    "description"
  ],
  "properties": {
    "summary": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64,
      "description": "The summary for the ticket."
    },
    "description": {
      "type": "string",
      "minLength": 1,
      "maxLength": 65000,
      "description": "The full description."
    },
    "linode_id": {
      "type": "integer",
      "description": "The ID of the related Linode."
    },
    "domain_id": {
      "type": "integer",
      "description": "The ID of the related domain."
    },
    "nodebalancer_id": {
      "type": "integer",
      "description": "The ID of the related NodeBalancer."
    },
    "volume_id": {
      "type": "integer",
      "description": "The ID of the related volume."
    },
    "lke_cluster_id": {
      "type": "integer",
      "description": "The ID of the related LKE cluster."
    },
    "database_id": {
      "type": "integer",
      "description": "The ID of the related database."
    }
  }
}