Orbit alert schema
{ "$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" ] }