Event streaming and real-time notifications.
Event {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of event"
},
"user_id": {
"type": "string",
"format": "UUID",
"description": "The user who made the action that emitted the event"
},
"project_id": {
"type": "string",
"format": "UUID",
"description": "Project ID"
},
"data": {
"type": "string",
"format": "json",
"description": "Free JSON field to add metadata"
}
}
}