ilert · Schema

NotificationPreferencesAlert

Incident ManagementOn-Call AlertingAlert RoutingEscalation PoliciesOn-Call SchedulesStatus PagesHeartbeat MonitoringEvent ManagementDevOpsSREIT Operations

Properties

Name Type Description
id integer
method object
contact object
delayMin object
type object
View JSON Schema on GitHub

JSON Schema

notificationpreferencesalert.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.ilert.com/schemas/NotificationPreferencesAlert",
  "title": "NotificationPreferencesAlert",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "format": "int64"
    },
    "method": {
      "$ref": "#/components/schemas/NotificationPreferenceAlertMethod"
    },
    "contact": {
      "type": "object",
      "oneOf": [
        {
          "$ref": "#/components/schemas/ContactPhoneNumber"
        },
        {
          "$ref": "#/components/schemas/ContactEmail"
        }
      ]
    },
    "delayMin": {
      "$ref": "#/components/schemas/NotificationPreferencesAlertDelayMin"
    },
    "type": {
      "$ref": "#/components/schemas/NotificationPreferenceAlertType"
    }
  }
}