Atlassian · Schema

WebhookRegistrationDetails

Details of webhooks to register.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
url string The URL that specifies where to send the webhooks. This URL must use the same base URL as the Connect app. Only a single URL per app is allowed to be registered.
webhooks array A list of webhooks.
View JSON Schema on GitHub

JSON Schema

atlassian-webhookregistrationdetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WebhookRegistrationDetails",
  "title": "WebhookRegistrationDetails",
  "additionalProperties": false,
  "description": "Details of webhooks to register.",
  "properties": {
    "url": {
      "description": "The URL that specifies where to send the webhooks. This URL must use the same base URL as the Connect app. Only a single URL per app is allowed to be registered.",
      "type": "string"
    },
    "webhooks": {
      "description": "A list of webhooks.",
      "items": {
        "$ref": "#/components/schemas/WebhookDetails"
      },
      "type": "array"
    }
  },
  "required": [
    "url",
    "webhooks"
  ],
  "type": "object"
}