Oracle Cloud Infrastructure · JSON Structure

Database Create Autonomous Database Details Structure

Details for creating an Autonomous Database.

Type: object Properties: 9 Required: 5
Cloud ComputingEnterprise CloudInfrastructure as a ServiceOraclePlatform as a Service

CreateAutonomousDatabaseDetails is a JSON Structure definition published by Oracle Cloud Infrastructure, describing 9 properties, of which 5 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

compartmentId dbName displayName cpuCoreCount dataStorageSizeInTBs adminPassword dbWorkload isFreeTier isAutoScalingEnabled

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/oracle-cloud/refs/heads/main/json-structure/database-create-autonomous-database-details-structure.json",
  "name": "CreateAutonomousDatabaseDetails",
  "description": "Details for creating an Autonomous Database.",
  "type": "object",
  "properties": {
    "compartmentId": {
      "type": "string",
      "example": "ocid1.resource.oc1.iad.abcdefg123456"
    },
    "dbName": {
      "type": "string",
      "example": "MYADB"
    },
    "displayName": {
      "type": "string",
      "example": "my-adb"
    },
    "cpuCoreCount": {
      "type": "int32",
      "example": 2
    },
    "dataStorageSizeInTBs": {
      "type": "int32",
      "example": 1
    },
    "adminPassword": {
      "type": "string",
      "example": "********"
    },
    "dbWorkload": {
      "type": "string",
      "enum": "['OLTP', 'DW', 'AJD', 'APEX']",
      "example": "OLTP"
    },
    "isFreeTier": {
      "type": "boolean",
      "default": false,
      "example": false
    },
    "isAutoScalingEnabled": {
      "type": "boolean",
      "default": false,
      "example": false
    }
  },
  "required": [
    "compartmentId",
    "dbName",
    "cpuCoreCount",
    "dataStorageSizeInTBs",
    "adminPassword"
  ]
}