interface RobloxEntry {
    description: null | string;
    endsAt: null | string;
    gameTitle: string;
    id: string;
    placeId: number;
    playing: null | number;
    publishedAt: string;
    signal: RobloxSignal;
    startsAt: null | string;
    status: null | string;
    thumbnail: null | string;
    title: string;
    universeId: number;
    url: string;
}

Properties

description: null | string

event description; null for updates (no notes text exists)

endsAt: null | string
gameTitle: string
id: string
placeId: number

canonical root place — the game URL is roblox.com/games/

playing: null | number

live players (update signal); null for events

publishedAt: string
signal: RobloxSignal
startsAt: null | string

event window (null for updates)

status: null | string

event status: 'active' | 'upcoming' | … (null for updates)

thumbnail: null | string
title: string

update: " was updated" · event: the event title

universeId: number
url: string