Oracle Database · Schema

IndexMetadata

CloudDatabaseEnterpriseOracleREST APISQL

Properties

Name Type Description
owner string
index_name string
table_name string
index_type string
uniqueness string
status string
View JSON Schema on GitHub

JSON Schema

oracle-database-indexmetadata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IndexMetadata",
  "title": "IndexMetadata",
  "type": "object",
  "properties": {
    "owner": {
      "type": "string"
    },
    "index_name": {
      "type": "string"
    },
    "table_name": {
      "type": "string"
    },
    "index_type": {
      "type": "string"
    },
    "uniqueness": {
      "type": "string"
    },
    "status": {
      "type": "string"
    }
  }
}