...
The leagues file drives the leagues tab of the FanDuel Sportsbook Reader:
...
leagueMarkets.txt
This file is used to define the moneyline/spread/total props. Some sports don’t have all three types and the names of these props can be different depending on the sport.
The format of this file is:
<league code>\t<prop>,<prop>,…<prop>
The prop names must be quoted. For example:
NBA "MATCH_HANDICAP_(2-WAY)","MONEY_LINE","TOTAL_POINTS_(OVER/UNDER)"
The props in this file only get updated if the league is enabled (checked) in the FanDuel Sportsbook Reader.
leagueMarketsOutright.txt
The bulk of all props are defined in this file. It includes props associated with games or with the league. There is no need to distinguish between the two because for each prop, it is associated with a game using the datafeed’s event id or not. If not, the prop is associated with the league.
The format of this file is:
<league code>\t<prop>,<prop>,…<prop>
The prop names must be quoted. For example:
CFB "OUTRIGHT_BETTING","REGULAR_SEASON_WIN_TOTALS"
The props in this file only get updated if the league is enabled (checked) in the FanDuel Sportsbook Reader.
leagueMarketsSpecial.txt
Some leagues have competitions which are not associated with games but are related to the league only. For example, MLB might have several competitions
...