{
  "$id": "https://firefox-ci-tc.services.mozilla.com/schemas/notify/v1/notification-address.json#",
  "$schema": "https://firefox-ci-tc.services.mozilla.com/schemas/common/metaschema.json#",
  "additionalProperties": false,
  "description": "Type of notification and its corresponding address.\n",
  "properties": {
    "notificationAddress": {
      "type": "string"
    },
    "notificationType": {
      "enum": [
        "email",
        "pulse",
        "matrix-room",
        "slack-channel"
      ],
      "type": "string"
    }
  },
  "required": [
    "notificationType",
    "notificationAddress"
  ],
  "title": "Notification Type And Address",
  "type": "object"
}