Game Summary
All values in this structure only reference and include published events (e.g. with local_status: 0
)
{
"_type": "Tik::Model::GameSummary",
// Tik::Model::LocalRef referencing the newest published live blog entry
"first_event": {},
// Tik::Model::LocalRef referencing the oldest published live blog entry
"last_event": {},
// Tik::Model::LocalRefList referencing all milestone entries
"milestones": {},
// Tik::Model::LocalRefList referencing all goal events
"goals": {},
// [Tik::Model::LocalRefLis] referencing all special events for players
"players": [],
// Total number of published events in this game (capped at 16383)
"event_cnt": 0,
// Total number of published pictures in this game
"image_cnt": 0,
// Total number of published videos in this game
"video_cnt": 0,
// Total number of published comment channels in this game
"comment_channel_cnt": 0
}
Tik::Model::LocalRefList
{
// Identifier for this list, for example a player id
"local_id": "",
// The newest highest version number of any event included in this list
"version": "",
// [Tik::Model::LocalRef] - references to relevant events
refs: []
}
Tik::Model::LocalRef
{
"_type": "Tik::Model::LocalRef",
// The Event ID referenced
"local_id": "",
// The event version referenced
"version": 0,
// The status of the referenced event
"local_status": 0,
// The sort value of the referenced event
"sort": "",
// The timestamp of the referenced event
"created_at": 0
}