Oracle Database · Schema

DatabaseStatus

CloudDatabaseEnterpriseOracleREST APISQL

Properties

Name Type Description
status string
instance_name string
host_name string
database_role string
open_mode string
View JSON Schema on GitHub

JSON Schema

oracle-database-databasestatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DatabaseStatus",
  "title": "DatabaseStatus",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "OPEN",
        "MOUNTED",
        "STARTED"
      ]
    },
    "instance_name": {
      "type": "string"
    },
    "host_name": {
      "type": "string"
    },
    "database_role": {
      "type": "string"
    },
    "open_mode": {
      "type": "string"
    }
  }
}