Veritas NetBackup · Schema

ImageResource

BackupData ProtectionDisaster RecoveryEnterpriseRecoveryStorage

Properties

Name Type Description
data object
View JSON Schema on GitHub

JSON Schema

veritas-netbackup-imageresource-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ImageResource",
  "title": "ImageResource",
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "type": {
          "type": "string",
          "const": "backupImage"
        },
        "id": {
          "type": "string",
          "description": "The backup ID"
        },
        "attributes": {
          "$ref": "#/components/schemas/ImageAttributes"
        },
        "links": {
          "type": "object",
          "properties": {
            "self": {
              "type": "object",
              "properties": {
                "href": {
                  "type": "string",
                  "format": "uri"
                }
              }
            }
          }
        }
      },
      "example": "example_value"
    }
  }
}