Oracle Database · Schema

ForeignKeyList

CloudDatabaseEnterpriseOracleREST APISQL

Properties

Name Type Description
items array
View JSON Schema on GitHub

JSON Schema

oracle-database-foreignkeylist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ForeignKeyList",
  "title": "ForeignKeyList",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "owner": {
            "type": "string"
          },
          "constraint_name": {
            "type": "string"
          },
          "table_name": {
            "type": "string"
          },
          "r_owner": {
            "type": "string"
          },
          "r_constraint_name": {
            "type": "string"
          },
          "status": {
            "type": "string"
          }
        }
      }
    }
  }
}