{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FailedWebhook", "title": "FailedWebhook", "additionalProperties": false, "description": "Details about a failed webhook.", "properties": { "body": { "description": "The webhook body.", "type": "string" }, "failureTime": { "description": "The time the webhook was added to the list of failed webhooks (that is, the time of the last failed retry).", "format": "int64", "type": "integer" }, "id": { "description": "The webhook ID, as sent in the `X-Atlassian-Webhook-Identifier` header with the webhook.", "type": "string" }, "url": { "description": "The original webhook destination.", "type": "string" } }, "required": [ "failureTime", "id", "url" ], "type": "object" }