NetApp · Schema

ClusterNodeReference

Reference to a cluster node

CloudData ManagementHybrid CloudInfrastructureStorageFortune 500

Properties

Name Type Description
uuid string
name string
_links object
View JSON Schema on GitHub

JSON Schema

netapp-clusternodereference-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClusterNodeReference",
  "title": "ClusterNodeReference",
  "type": "object",
  "description": "Reference to a cluster node",
  "properties": {
    "uuid": {
      "type": "string",
      "format": "uuid",
      "example": "500123"
    },
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "_links": {
      "$ref": "#/components/schemas/SelfLink"
    }
  }
}