Oracle Database · Schema

DataGuardConfiguration

CloudDatabaseEnterpriseOracleREST APISQL

Properties

Name Type Description
configuration_name string
protection_mode string
enabled boolean
databases array
View JSON Schema on GitHub

JSON Schema

oracle-database-dataguardconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DataGuardConfiguration",
  "title": "DataGuardConfiguration",
  "type": "object",
  "properties": {
    "configuration_name": {
      "type": "string"
    },
    "protection_mode": {
      "type": "string"
    },
    "enabled": {
      "type": "boolean"
    },
    "databases": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DataGuardDatabase"
      }
    }
  }
}