Oracle Database · Schema

DatafileList

CloudDatabaseEnterpriseOracleREST APISQL

Properties

Name Type Description
items array
View JSON Schema on GitHub

JSON Schema

oracle-database-datafilelist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DatafileList",
  "title": "DatafileList",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "file_name": {
            "type": "string"
          },
          "file_id": {
            "type": "integer"
          },
          "tablespace_name": {
            "type": "string"
          },
          "bytes": {
            "type": "integer",
            "format": "int64"
          },
          "status": {
            "type": "string"
          }
        }
      }
    }
  }
}