type Event struct {
Id string `json:"id"`
Name string `json:"name"`
Title string `json:"title"`
Message string `json:"message,omitempty"`
Output map[string]any `json:"output"`
}
type Property struct {
Name string `json:"name"`
Time model.Time `json:"time,omitempty"`
Timestamp int64 `json:"ts,omitempty"`
Value any `json:"value"`
}