Atlassian · Schema

FailedWebhook

Details about a failed webhook.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
body string The webhook body.
failureTime integer The time the webhook was added to the list of failed webhooks (that is, the time of the last failed retry).
id string The webhook ID, as sent in the `X-Atlassian-Webhook-Identifier` header with the webhook.
url string The original webhook destination.
View JSON Schema on GitHub

JSON Schema

atlassian-failedwebhook-schema.json Raw ↑
{
  "$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"
}