NetApp · Schema

Snapshot

A point-in-time copy of a volume

CloudData ManagementHybrid CloudInfrastructureStorageFortune 500

Properties

Name Type Description
uuid string Snapshot UUID
name string Snapshot name
create_time string Time when the snapshot was created
expiry_time string Time when the snapshot expires and can be automatically deleted
comment string Optional comment for the snapshot
size integer Amount of space consumed by the snapshot in bytes
state string Snapshot state
snapmirror_label string SnapMirror label used for policy-based selection
View JSON Schema on GitHub

JSON Schema

netapp-ontap-snapshot-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Snapshot",
  "type": "object",
  "description": "A point-in-time copy of a volume",
  "properties": {
    "uuid": {
      "type": "string",
      "description": "Snapshot UUID"
    },
    "name": {
      "type": "string",
      "description": "Snapshot name"
    },
    "create_time": {
      "type": "string",
      "description": "Time when the snapshot was created"
    },
    "expiry_time": {
      "type": "string",
      "description": "Time when the snapshot expires and can be automatically deleted"
    },
    "comment": {
      "type": "string",
      "description": "Optional comment for the snapshot"
    },
    "size": {
      "type": "integer",
      "description": "Amount of space consumed by the snapshot in bytes"
    },
    "state": {
      "type": "string",
      "description": "Snapshot state"
    },
    "snapmirror_label": {
      "type": "string",
      "description": "SnapMirror label used for policy-based selection"
    }
  }
}