Veritas NetBackup · Schema
ImageAttributes
Attributes of a NetBackup backup image
BackupData ProtectionDisaster RecoveryEnterpriseRecoveryStorage
Properties
| Name | Type | Description |
|---|---|---|
| backupId | string | Unique identifier for the backup image |
| policyName | string | Name of the policy that created this image |
| policyType | string | Type of the policy |
| clientName | string | Client hostname that was backed up |
| scheduleName | string | Schedule name that triggered the backup |
| scheduleType | string | Type of the schedule |
| backupTime | string | Timestamp when the backup was performed |
| expirationTime | string | Timestamp when the image will expire |
| kilobytes | integer | Total size of the backup image in kilobytes |
| numberOfFiles | integer | Total number of files in the backup image |
| primaryCopy | integer | Primary copy number for the image |
| copyCount | integer | Total number of copies of this image |
| mediaServer | string | Media server that performed the backup |
| storageUnit | string | Storage unit where the image is stored |
| mediaId | string | Media ID where the image resides |
| compressed | boolean | Whether the image data is compressed |
| encrypted | boolean | Whether the image data is encrypted |
| multiplexed | boolean | Whether the image is multiplexed |
| retentionLevel | integer | Retention level assigned to the image |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ImageAttributes",
"type": "object",
"description": "Attributes of a NetBackup backup image",
"properties": {
"backupId": {
"type": "string",
"description": "Unique identifier for the backup image"
},
"policyName": {
"type": "string",
"description": "Name of the policy that created this image"
},
"policyType": {
"type": "string",
"description": "Type of the policy"
},
"clientName": {
"type": "string",
"description": "Client hostname that was backed up"
},
"scheduleName": {
"type": "string",
"description": "Schedule name that triggered the backup"
},
"scheduleType": {
"type": "string",
"description": "Type of the schedule"
},
"backupTime": {
"type": "string",
"description": "Timestamp when the backup was performed"
},
"expirationTime": {
"type": "string",
"description": "Timestamp when the image will expire"
},
"kilobytes": {
"type": "integer",
"description": "Total size of the backup image in kilobytes"
},
"numberOfFiles": {
"type": "integer",
"description": "Total number of files in the backup image"
},
"primaryCopy": {
"type": "integer",
"description": "Primary copy number for the image"
},
"copyCount": {
"type": "integer",
"description": "Total number of copies of this image"
},
"mediaServer": {
"type": "string",
"description": "Media server that performed the backup"
},
"storageUnit": {
"type": "string",
"description": "Storage unit where the image is stored"
},
"mediaId": {
"type": "string",
"description": "Media ID where the image resides"
},
"compressed": {
"type": "boolean",
"description": "Whether the image data is compressed"
},
"encrypted": {
"type": "boolean",
"description": "Whether the image data is encrypted"
},
"multiplexed": {
"type": "boolean",
"description": "Whether the image is multiplexed"
},
"retentionLevel": {
"type": "integer",
"description": "Retention level assigned to the image"
}
}
}