Cribl · Schema

Notification

ConfigurationData LakeData PipelinesData RoutingEdge ComputingInfrastructure as CodeObservabilitySearchSecurity DataStream ProcessingTelemetry

Properties

Name Type Description
id string Unique identifier for the notification rule
type string The notification type
targets array List of notification targets
description string A human-readable description
View JSON Schema on GitHub

JSON Schema

cribl-notification-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Notification",
  "title": "Notification",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the notification rule"
    },
    "type": {
      "type": "string",
      "description": "The notification type"
    },
    "targets": {
      "type": "array",
      "description": "List of notification targets",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "description": "The target type such as webhook, pagerduty, or email"
          },
          "url": {
            "type": "string",
            "description": "The target webhook URL"
          }
        }
      }
    },
    "description": {
      "type": "string",
      "description": "A human-readable description"
    }
  }
}