We had a discussion about votes, and whether the ordering of options influenced the vote outcome,
so I made a JSON file for you with all the votes I could find on discord. Check it out and feel
free to do any analysis you want with it.
Thanks to Laura Ș., Cristina G. and Cristian I. for finding errors! If you find any more errors please let Gyuri know.
Here is the JSON: tealgroup.ro/votes.json
Here is the CSV(for those who prefer spreadsheets): tealgroup.ro/votes.csv
// Schema, I hope you understand what I'm trying to say here
// The file consists of an array of Vote type objects
Contents : Array of Vote
// Each Vote type object has the following 4 fields:
Vote :
{
name : String // name of the vote
startDate : String // ISO date
endDate : String // ISO date
platform : String // facebook or discord
choices : Array of Choice // the actual options we vote on
}
// Each Choice type object contains the following fields:
Choice :
{
name: String // The name of the paper
description : String // The description below the name in the vote
emoji : String // Not the actual emoji, but the Discord emoji name (none for facebook)
votes : Array of String // An array of names representing who voted for this choice
}