Veritas InfoScale · Schema
System
Cluster system node schema from Veritas InfoScale REST API
ClusteringData ManagementDisaster RecoveryHigh AvailabilityStorage ManagementVirtualization
Properties
| Name | Type | Description |
|---|---|---|
| name | string | System hostname |
| state | string | System state in the cluster |
| frozen | boolean | Whether the system is frozen |
| cpuUsage | number | Current CPU usage percentage |
| memoryUsage | number | Current memory usage percentage |
| serviceGroupCount | integer | Number of service groups on this system |
| platform | string | Operating system platform |
| architecture | string | Hardware architecture |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/veritas-infoscale/refs/heads/main/json-schema/rest-api-system-schema.json",
"title": "System",
"description": "Cluster system node schema from Veritas InfoScale REST API",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "System hostname"
},
"state": {
"type": "string",
"enum": ["RUNNING", "FAULTED", "EXITED", "UNKNOWN"],
"description": "System state in the cluster"
},
"frozen": {
"type": "boolean",
"description": "Whether the system is frozen"
},
"cpuUsage": {
"type": "number",
"format": "double",
"description": "Current CPU usage percentage"
},
"memoryUsage": {
"type": "number",
"format": "double",
"description": "Current memory usage percentage"
},
"serviceGroupCount": {
"type": "integer",
"description": "Number of service groups on this system"
},
"platform": {
"type": "string",
"description": "Operating system platform"
},
"architecture": {
"type": "string",
"description": "Hardware architecture"
}
}
}