Atlassian · Schema

ContainerForRegisteredWebhooks

Container for a list of registered webhooks. Webhook details are returned in the same order as the request.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
webhookRegistrationResult array A list of registered webhooks.
View JSON Schema on GitHub

JSON Schema

atlassian-containerforregisteredwebhooks-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContainerForRegisteredWebhooks",
  "title": "ContainerForRegisteredWebhooks",
  "additionalProperties": false,
  "description": "Container for a list of registered webhooks. Webhook details are returned in the same order as the request.",
  "properties": {
    "webhookRegistrationResult": {
      "description": "A list of registered webhooks.",
      "items": {
        "$ref": "#/components/schemas/RegisteredWebhook"
      },
      "type": "array"
    }
  },
  "type": "object"
}