Oracle Database · Schema

CreatePluggableDatabaseDetails

CloudDatabaseEnterpriseOracleREST APISQL

Properties

Name Type Description
containerDatabaseId string
pdbName string
pdbAdminPassword string
tdeWalletPassword string
freeformTags object
View JSON Schema on GitHub

JSON Schema

oracle-database-createpluggabledatabasedetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreatePluggableDatabaseDetails",
  "title": "CreatePluggableDatabaseDetails",
  "type": "object",
  "required": [
    "containerDatabaseId",
    "pdbName"
  ],
  "properties": {
    "containerDatabaseId": {
      "type": "string"
    },
    "pdbName": {
      "type": "string"
    },
    "pdbAdminPassword": {
      "type": "string",
      "format": "password"
    },
    "tdeWalletPassword": {
      "type": "string",
      "format": "password"
    },
    "freeformTags": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    }
  }
}