Oracle Database · Schema

TableMetadata

CloudDatabaseEnterpriseOracleREST APISQL

Properties

Name Type Description
owner string
table_name string
tablespace_name string
num_rows integer
last_analyzed string
status string
temporary string
View JSON Schema on GitHub

JSON Schema

oracle-database-tablemetadata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TableMetadata",
  "title": "TableMetadata",
  "type": "object",
  "properties": {
    "owner": {
      "type": "string"
    },
    "table_name": {
      "type": "string"
    },
    "tablespace_name": {
      "type": "string"
    },
    "num_rows": {
      "type": "integer",
      "format": "int64"
    },
    "last_analyzed": {
      "type": "string",
      "format": "date-time"
    },
    "status": {
      "type": "string"
    },
    "temporary": {
      "type": "string"
    }
  }
}