Ampersand · Schema

NotificationEventTopicRoute

NotificationEventTopicRoute schema from Ampersand API

Developer ToolsIntegrationsPlatformSaaSOAuthData SyncWebhooks

Properties

Name Type Description
id string The event-topic route ID.
eventType object
topicId string The ID of the topic to route events to.
projectId string The Ampersand project ID.
createTime string The time when the event-topic route was created.
updateTime string The time when the event-topic route was last updated.
View JSON Schema on GitHub

JSON Schema

ampersand-api-notification-event-topic-route-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ampersand/refs/heads/main/json-schema/ampersand-api-notification-event-topic-route-schema.json",
  "title": "NotificationEventTopicRoute",
  "description": "NotificationEventTopicRoute schema from Ampersand API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The event-topic route ID."
    },
    "eventType": {
      "$ref": "#/components/schemas/NotificationEventType"
    },
    "topicId": {
      "type": "string",
      "description": "The ID of the topic to route events to."
    },
    "projectId": {
      "type": "string",
      "description": "The Ampersand project ID."
    },
    "createTime": {
      "type": "string",
      "format": "date-time",
      "description": "The time when the event-topic route was created."
    },
    "updateTime": {
      "type": "string",
      "format": "date-time",
      "description": "The time when the event-topic route was last updated."
    }
  },
  "required": [
    "id",
    "eventType",
    "topicId",
    "projectId",
    "createTime"
  ]
}