Oracle Database · Schema

PluggableDatabase

CloudDatabaseEnterpriseOracleREST APISQL

Properties

Name Type Description
id string
containerDatabaseId string
pdbName string
compartmentId string
lifecycleState string
openMode string
timeCreated string
connectionStrings object
View JSON Schema on GitHub

JSON Schema

oracle-database-pluggabledatabase-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PluggableDatabase",
  "title": "PluggableDatabase",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "containerDatabaseId": {
      "type": "string"
    },
    "pdbName": {
      "type": "string"
    },
    "compartmentId": {
      "type": "string"
    },
    "lifecycleState": {
      "type": "string",
      "enum": [
        "PROVISIONING",
        "AVAILABLE",
        "TERMINATING",
        "TERMINATED",
        "UPDATING",
        "FAILED"
      ]
    },
    "openMode": {
      "type": "string",
      "enum": [
        "READ_ONLY",
        "READ_WRITE",
        "MOUNTED",
        "MIGRATE"
      ]
    },
    "timeCreated": {
      "type": "string",
      "format": "date-time"
    },
    "connectionStrings": {
      "type": "object",
      "properties": {
        "pdbDefault": {
          "type": "string"
        },
        "pdbIpDefault": {
          "type": "string"
        }
      }
    }
  }
}