Atlassian · Schema

ContainerForWebhookIDs

Container for a list of webhook IDs.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
webhookIds array A list of webhook IDs.
View JSON Schema on GitHub

JSON Schema

atlassian-containerforwebhookids-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContainerForWebhookIDs",
  "title": "ContainerForWebhookIDs",
  "additionalProperties": false,
  "description": "Container for a list of webhook IDs.",
  "properties": {
    "webhookIds": {
      "description": "A list of webhook IDs.",
      "items": {
        "description": "A list of webhook IDs.",
        "format": "int64",
        "type": "integer"
      },
      "type": "array"
    }
  },
  "required": [
    "webhookIds"
  ],
  "type": "object"
}