ilert · Schema

CParamsWebhook

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

Properties

Name Type Description
webhookUrl string
bodyTemplate string
headers array
View JSON Schema on GitHub

JSON Schema

cparamswebhook.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.ilert.com/schemas/CParamsWebhook",
  "title": "CParamsWebhook",
  "required": [
    "webhookUrl"
  ],
  "type": "object",
  "properties": {
    "webhookUrl": {
      "type": "string"
    },
    "bodyTemplate": {
      "type": "string"
    },
    "headers": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "key",
          "value"
        ],
        "properties": {
          "key": {
            "type": "string"
          },
          "value": {
            "type": "string"
          }
        }
      }
    }
  }
}