Oracle Database · Schema

PDB

CloudDatabaseEnterpriseOracleREST APISQL

Properties

Name Type Description
pdb_name string
pdb_id integer
status string
open_mode string
total_size integer
creation_time string
View JSON Schema on GitHub

JSON Schema

oracle-database-pdb-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PDB",
  "title": "PDB",
  "type": "object",
  "properties": {
    "pdb_name": {
      "type": "string"
    },
    "pdb_id": {
      "type": "integer"
    },
    "status": {
      "type": "string"
    },
    "open_mode": {
      "type": "string"
    },
    "total_size": {
      "type": "integer",
      "format": "int64"
    },
    "creation_time": {
      "type": "string",
      "format": "date-time"
    }
  }
}