NetApp · Schema

SvmReference

Reference to an SVM

CloudData ManagementHybrid CloudInfrastructureStorageFortune 500

Properties

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

JSON Schema

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