Veritas NetBackup · Schema
PolicyAttributes
Attributes of a NetBackup backup policy
BackupData ProtectionDisaster RecoveryEnterpriseRecoveryStorage
Properties
| Name | Type | Description |
|---|---|---|
| policyName | string | Unique name of the policy |
| policyType | string | The policy type defining the type of backup |
| active | boolean | Whether the policy is currently active |
| effectiveDate | string | Date and time the policy becomes effective |
| snapshotMethodArgs | string | Arguments for snapshot method if applicable |
| backupCopies | object | |
| priority | integer | Job priority for this policy |
| keyword | string | Keyword tag for the policy |
| dataClassification | string | Data classification associated with this policy |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "PolicyAttributes",
"type": "object",
"description": "Attributes of a NetBackup backup policy",
"properties": {
"policyName": {
"type": "string",
"description": "Unique name of the policy"
},
"policyType": {
"type": "string",
"description": "The policy type defining the type of backup"
},
"active": {
"type": "boolean",
"description": "Whether the policy is currently active"
},
"effectiveDate": {
"type": "string",
"description": "Date and time the policy becomes effective"
},
"snapshotMethodArgs": {
"type": "string",
"description": "Arguments for snapshot method if applicable"
},
"backupCopies": {
"type": "object"
},
"priority": {
"type": "integer",
"description": "Job priority for this policy"
},
"keyword": {
"type": "string",
"description": "Keyword tag for the policy"
},
"dataClassification": {
"type": "string",
"description": "Data classification associated with this policy"
}
}
}