ilert · Schema

AlertResponder

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

Properties

Name Type Description
user object
status string
acceptedAt string
View JSON Schema on GitHub

JSON Schema

alertresponder.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.ilert.com/schemas/AlertResponder",
  "title": "AlertResponder",
  "type": "object",
  "properties": {
    "user": {
      "$ref": "#/components/schemas/UserRel"
    },
    "status": {
      "type": "string",
      "enum": [
        "PENDING",
        "ACCEPTED"
      ]
    },
    "acceptedAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}