ilert · Schema

DeploymentEvent

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

Properties

Name Type Description
integrationKey string
summary string
timestamp integer
userEmail string Optional email used to map the event to a specific user in ilert
customDetails object
links array
View JSON Schema on GitHub

JSON Schema

deploymentevent.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.ilert.com/schemas/DeploymentEvent",
  "title": "DeploymentEvent",
  "type": "object",
  "required": [
    "integrationKey",
    "summary"
  ],
  "properties": {
    "integrationKey": {
      "type": "string"
    },
    "summary": {
      "type": "string"
    },
    "timestamp": {
      "type": "integer",
      "format": "int64"
    },
    "userEmail": {
      "description": "Optional email used to map the event to a specific user in ilert",
      "type": "string",
      "format": "email"
    },
    "customDetails": {
      "type": "object",
      "additionalProperties": true
    },
    "links": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/EventLink"
      }
    }
  }
}