Oracle Database · Schema

AlertList

CloudDatabaseEnterpriseOracleREST APISQL

Properties

Name Type Description
items array
View JSON Schema on GitHub

JSON Schema

oracle-database-alertlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AlertList",
  "title": "AlertList",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "message_text": {
            "type": "string"
          },
          "message_level": {
            "type": "integer"
          },
          "originating_timestamp": {
            "type": "string",
            "format": "date-time"
          }
        }
      }
    }
  }
}