Oracle Database · Schema

AutoRESTRequest

CloudDatabaseEnterpriseOracleREST APISQL

Properties

Name Type Description
object_name string
object_type string
object_alias string
schema string
View JSON Schema on GitHub

JSON Schema

oracle-database-autorestrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AutoRESTRequest",
  "title": "AutoRESTRequest",
  "type": "object",
  "required": [
    "object_name",
    "object_type"
  ],
  "properties": {
    "object_name": {
      "type": "string"
    },
    "object_type": {
      "type": "string",
      "enum": [
        "TABLE",
        "VIEW",
        "PACKAGE",
        "PROCEDURE",
        "FUNCTION"
      ]
    },
    "object_alias": {
      "type": "string"
    },
    "schema": {
      "type": "string"
    }
  }
}