Orbit · Schema

Alert

Orbit alert schema

Developer RelationsCommunity IntelligenceDevRelCommunity ManagementMember TrackingCommunity AnalyticsOpen SourceDeveloper Engagement

Properties

Name Type Description
name string
event_type string
activity_types array
member_tags array
View JSON Schema on GitHub

JSON Schema

orbit-alert.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://orbit.love/schemas/alert.json",
  "title": "Alert",
  "description": "Orbit alert schema",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "event_type": {
      "type": "string"
    },
    "activity_types": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "member_tags": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "name"
  ]
}