honeycomb · Schema

RecipientCreateRequest

Properties

Name Type Description
type string The notification channel type.
target string The target address or identifier for the recipient.
View JSON Schema on GitHub

JSON Schema

honeycomb-recipientcreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RecipientCreateRequest",
  "title": "RecipientCreateRequest",
  "type": "object",
  "required": [
    "type",
    "target"
  ],
  "properties": {
    "type": {
      "type": "string",
      "description": "The notification channel type.",
      "enum": [
        "email",
        "pagerduty",
        "slack",
        "webhook",
        "msteams"
      ]
    },
    "target": {
      "type": "string",
      "description": "The target address or identifier for the recipient."
    }
  }
}