NetApp · Schema

VolumeReference

Reference to a volume

CloudData ManagementHybrid CloudInfrastructureStorageFortune 500

Properties

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

JSON Schema

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