Veritas NetBackup · Schema
PolicySchedule
BackupData ProtectionDisaster RecoveryEnterpriseRecoveryStorage
Properties
| Name | Type | Description |
|---|---|---|
| scheduleName | string | Name of the schedule |
| scheduleType | string | Type of backup for this schedule |
| frequency | integer | Frequency in seconds between backup runs |
| retentionPeriod | object | |
| storageUnit | string | Name of the storage unit for this schedule |
| backupWindow | object | |
| mediaMultiplexing | integer | Maximum number of concurrent backup streams to a single device |
| syntheticBackup | boolean | Whether this schedule creates synthetic backups |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "PolicySchedule",
"type": "object",
"properties": {
"scheduleName": {
"type": "string",
"description": "Name of the schedule"
},
"scheduleType": {
"type": "string",
"description": "Type of backup for this schedule"
},
"frequency": {
"type": "integer",
"description": "Frequency in seconds between backup runs"
},
"retentionPeriod": {
"type": "object"
},
"storageUnit": {
"type": "string",
"description": "Name of the storage unit for this schedule"
},
"backupWindow": {
"type": "object"
},
"mediaMultiplexing": {
"type": "integer",
"description": "Maximum number of concurrent backup streams to a single device"
},
"syntheticBackup": {
"type": "boolean",
"description": "Whether this schedule creates synthetic backups"
}
}
}