// Pioneer League l128 - {2:3 1:3}
var round = schedule.rounds;

// ----------------------------------------------------------------------
// round one

round[0].name = "Round 1";
round[0].summary = "Winners advance to the Finals"; // text at bottom of the table

var game = round[0].series[0].games;
round[0].series[0].matchup = "North 1st Half Champion vs North 2nd Half Champion";
game[0].tbd = ["Sept  8", "TBD @ TBD"];
game[1].tbd = ["Sept  9", "TBD @ TBD"];
game[2].tbd = ["Sept 10", "TBD @ TBD (If Necessary)"];

var game = round[0].series[1].games;
round[0].series[1].matchup = "South 1st Half Champion vs South 2nd Half Champion";
game[0].tbd = ["Sept  8", "TBD @ TBD"];
game[1].tbd = ["Sept  9", "TBD @ TBD"];
game[2].tbd = ["Sept 10", "TBD @ TBD (If Necessary)"];

// ----------------------------------------------------------------------
// finals

round[1].name = "Finals";
round[1].summary = "";

var game = round[1].series[0].games;
round[1].series[0].matchup = "North Division Winner vs South Division Winner";
game[0].tbd = ["Sept 12", "TBD @ TBD"];
game[1].tbd = ["Sept 13", "TBD @ TBD"];
game[2].tbd = ["Sept 15", "TBD @ TBD (If Necessary)"];
