Dynatrace · Schema

WebhookHeader

An HTTP header to include in webhook notification requests.

AI OperationsAnalyticsAPMApplication Performance MonitoringApplication SecurityAutomationCloud MonitoringDigital Experience ManagementIntelligenceObservability

Properties

Name Type Description
name string The HTTP header name.
value string The HTTP header value.
View JSON Schema on GitHub

JSON Schema

problems-webhook-header-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/dynatrace/refs/heads/main/json-schema/problems-webhook-header-schema.json",
  "title": "WebhookHeader",
  "description": "An HTTP header to include in webhook notification requests.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The HTTP header name.",
      "example": "Authorization"
    },
    "value": {
      "type": "string",
      "description": "The HTTP header value.",
      "example": "Bearer my-secret-token"
    }
  },
  "required": [
    "name",
    "value"
  ]
}