Teradata · Schema

Node

A node in the QueryGrid environment.

AnalyticsCloudData ManagementData WarehousingDatabaseEnterpriseMachine LearningSQLFortune 1000

Properties

Name Type Description
id string Unique node identifier.
name string Node name.
hostname string Node hostname.
systemId string Parent system identifier.
status string Node status.
softwareVersion string Installed software version.
View JSON Schema on GitHub

JSON Schema

querygrid-manager-api-node-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/teradata/refs/heads/main/json-schema/querygrid-manager-api-node-schema.json",
  "title": "Node",
  "description": "A node in the QueryGrid environment.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique node identifier."
    },
    "name": {
      "type": "string",
      "description": "Node name."
    },
    "hostname": {
      "type": "string",
      "description": "Node hostname."
    },
    "systemId": {
      "type": "string",
      "description": "Parent system identifier."
    },
    "status": {
      "type": "string",
      "description": "Node status.",
      "enum": ["active", "inactive", "error"]
    },
    "softwareVersion": {
      "type": "string",
      "description": "Installed software version."
    }
  }
}