Oracle Cloud Infrastructure · Schema
DbSystem
A DB system.
Cloud ComputingEnterprise CloudInfrastructure as a ServiceOraclePlatform as a Service
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| compartmentId | string | |
| displayName | string | |
| shape | string | |
| availabilityDomain | string | |
| cpuCoreCount | integer | |
| nodeCount | integer | |
| dataStorageSizeInGBs | integer | |
| databaseEdition | string | |
| lifecycleState | string | |
| timeCreated | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DbSystem",
"title": "DbSystem",
"type": "object",
"description": "A DB system.",
"properties": {
"id": {
"type": "string",
"example": "ocid1.resource.oc1.iad.abcdefg123456"
},
"compartmentId": {
"type": "string",
"example": "ocid1.resource.oc1.iad.abcdefg123456"
},
"displayName": {
"type": "string",
"example": "my-resource"
},
"shape": {
"type": "string",
"example": "VM.Standard.E4.Flex"
},
"availabilityDomain": {
"type": "string",
"example": "Uocm:US-ASHBURN-AD-1"
},
"cpuCoreCount": {
"type": "integer",
"example": 1
},
"nodeCount": {
"type": "integer",
"example": 1
},
"dataStorageSizeInGBs": {
"type": "integer",
"example": 1
},
"databaseEdition": {
"type": "string",
"enum": [
"STANDARD_EDITION",
"ENTERPRISE_EDITION",
"ENTERPRISE_EDITION_HIGH_PERFORMANCE",
"ENTERPRISE_EDITION_EXTREME_PERFORMANCE"
],
"example": "STANDARD_EDITION"
},
"lifecycleState": {
"type": "string",
"example": "example-value"
},
"timeCreated": {
"type": "string",
"format": "date-time",
"example": "2026-04-18T10:30:00Z"
}
}
}