MagicBell · Schema

Event

notificationspush notificationsin-app notificationsemailSMSSlackMicrosoft Teamswebhooksnotification inboxmultichannelmobile pushweb push

Properties

Name Type Description
code integer
context object
id string
level string
log string
timestamp string
type string
View JSON Schema on GitHub

JSON Schema

magicbell-event.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/magicbell/main/json-schema/magicbell-event.json",
  "title": "Event",
  "required": [
    "id",
    "type",
    "timestamp"
  ],
  "type": "object",
  "properties": {
    "code": {
      "type": "integer"
    },
    "context": {
      "type": "object",
      "nullable": true
    },
    "id": {
      "type": "string"
    },
    "level": {
      "type": "string"
    },
    "log": {
      "type": "string",
      "nullable": true
    },
    "timestamp": {
      "type": "string",
      "format": "date-time"
    },
    "type": {
      "type": "string"
    }
  }
}