Atlassian · Schema

WebhooksExpirationDate

The date the refreshed webhooks expire.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
expirationDate integer The expiration date of all the refreshed webhooks.
View JSON Schema on GitHub

JSON Schema

atlassian-webhooksexpirationdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WebhooksExpirationDate",
  "title": "WebhooksExpirationDate",
  "additionalProperties": false,
  "description": "The date the refreshed webhooks expire.",
  "properties": {
    "expirationDate": {
      "description": "The expiration date of all the refreshed webhooks.",
      "format": "int64",
      "readOnly": true,
      "type": "integer"
    }
  },
  "required": [
    "expirationDate"
  ],
  "type": "object"
}