Oracle Database · Schema

ColumnMetadata

CloudDatabaseEnterpriseOracleREST APISQL

Properties

Name Type Description
owner string
table_name string
column_name string
data_type string
data_length integer
nullable string
column_id integer
View JSON Schema on GitHub

JSON Schema

oracle-database-columnmetadata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ColumnMetadata",
  "title": "ColumnMetadata",
  "type": "object",
  "properties": {
    "owner": {
      "type": "string"
    },
    "table_name": {
      "type": "string"
    },
    "column_name": {
      "type": "string"
    },
    "data_type": {
      "type": "string"
    },
    "data_length": {
      "type": "integer"
    },
    "nullable": {
      "type": "string"
    },
    "column_id": {
      "type": "integer"
    }
  }
}