Veritas NetBackup · Schema

PolicyScheduleRequest

BackupData ProtectionDisaster RecoveryEnterpriseRecoveryStorage

Properties

Name Type Description
data object
View JSON Schema on GitHub

JSON Schema

veritas-netbackup-policyschedulerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PolicyScheduleRequest",
  "title": "PolicyScheduleRequest",
  "type": "object",
  "required": [
    "data"
  ],
  "properties": {
    "data": {
      "type": "object",
      "required": [
        "type",
        "id",
        "attributes"
      ],
      "properties": {
        "type": {
          "type": "string",
          "const": "policySchedule"
        },
        "id": {
          "type": "string",
          "description": "Schedule name"
        },
        "attributes": {
          "$ref": "#/components/schemas/PolicySchedule"
        }
      },
      "example": "example_value"
    }
  }
}