NetApp · Schema
ClusterNode
A node in the ONTAP cluster
CloudData ManagementHybrid CloudInfrastructureStorageFortune 500
Properties
| Name | Type | Description |
|---|---|---|
| uuid | string | Node UUID |
| name | string | Node name |
| model | string | Hardware model of the node |
| serial_number | string | System serial number |
| uptime | integer | Node uptime in seconds |
| version | object | ONTAP version running on the node |
| controller | object | Node controller information |
| state | string | Current operational state of the node |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ClusterNode",
"type": "object",
"description": "A node in the ONTAP cluster",
"properties": {
"uuid": {
"type": "string",
"description": "Node UUID"
},
"name": {
"type": "string",
"description": "Node name"
},
"model": {
"type": "string",
"description": "Hardware model of the node"
},
"serial_number": {
"type": "string",
"description": "System serial number"
},
"uptime": {
"type": "integer",
"description": "Node uptime in seconds"
},
"version": {
"type": "object",
"description": "ONTAP version running on the node"
},
"controller": {
"type": "object",
"description": "Node controller information"
},
"state": {
"type": "string",
"description": "Current operational state of the node"
}
}
}