database icon indicating copy to clipboard operation
database copied to clipboard

RFC: Competition / event results

Open avivace opened this issue 2 years ago • 2 comments

How could we save the ranking/position/category of an entry in a specific competition?

avivace avatar Feb 06 '24 19:02 avivace

Using the description field, unless we're interested in preserving the compos too (like what pouet.org does). In the second case, I would find out first a way to represent compos and for each compo add a "winner" field in which ids would appear.

Something like

/* compos.json */
{
"name": "Compo 2024",
"participants": [2, 49, 929, 29, 38, 48],
"winners": [38, 48, 2]
"year": 2024,
"organizer": 3 (or name of the organizers, e.g. Bung)
}

dag7dev avatar Mar 19 '24 13:03 dag7dev