Oracle Database · Schema

StorageInfo

CloudDatabaseEnterpriseOracleREST APISQL

Properties

Name Type Description
total_bytes integer
used_bytes integer
free_bytes integer
View JSON Schema on GitHub

JSON Schema

oracle-database-storageinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StorageInfo",
  "title": "StorageInfo",
  "type": "object",
  "properties": {
    "total_bytes": {
      "type": "integer",
      "format": "int64"
    },
    "used_bytes": {
      "type": "integer",
      "format": "int64"
    },
    "free_bytes": {
      "type": "integer",
      "format": "int64"
    }
  }
}