{ "$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" ] }