Oracle Database · Schema

Backup

CloudDatabaseEnterpriseOracleREST APISQL

Properties

Name Type Description
id string
databaseId string
displayName string
type string
lifecycleState string
databaseSizeInGBs number
timeStarted string
timeEnded string
View JSON Schema on GitHub

JSON Schema

oracle-database-backup-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Backup",
  "title": "Backup",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "databaseId": {
      "type": "string"
    },
    "displayName": {
      "type": "string"
    },
    "type": {
      "type": "string",
      "enum": [
        "INCREMENTAL",
        "FULL",
        "VIRTUAL_FULL"
      ]
    },
    "lifecycleState": {
      "type": "string"
    },
    "databaseSizeInGBs": {
      "type": "number"
    },
    "timeStarted": {
      "type": "string",
      "format": "date-time"
    },
    "timeEnded": {
      "type": "string",
      "format": "date-time"
    }
  }
}