How To: Broadcast Tagging
Reviewing the new workflow conditions for Broadcast Content
Available WKFL Conditions
<broadcastAwayTeam operator="Equal" value="Atlanta Braves" />
<username operator="Equal" value="BSSD" />
<broadcastHomeTeam operator="Equal" value="San Diego Padres" />
<broadcastGenre operator="Equal" value="Sports event Baseball" />
<broadcastTitle operator="Equal" value="MLB Baseball" />
Definitions
- How to search for the name of an Away Team
- How to search by channel, using their call sign (defined in picture below)
.png?width=619&name=image%20(11).png)
- How to search for the name of the Home Team
- How to search for a specific genre (List of available genres below)
| Baseball |
|
BaseballPlayoff
|
| Basketball |
|
BasketballPlayoff
|
| Cricket |
| F1 |
| Football |
|
FootballPlayoff
|
| Golf |
| GolfPlayoff |
| Hockey |
| HockeyPlayoff |
| IndyCar |
| Lacrosse |
|
LacrossePlayoff
|
| Nascar |
| Rugby |
| Soccer |
| SoccerPlayoff |
| Tennis |
- How to search for the broadcast Title (defined in picture below)

Example Workflows
<rules>
<rule>
<triggers>
<trigger on="NewItem" />
</triggers>
<conditions>
<and>
<broadcastAwayTeam operator="Equal" value="Atlanta Braves" />
</and>
</conditions>
<actions>
<addTag value="Away Game" />
</actions>
</rule>
<rule>
<triggers>
<trigger on="NewItem" />
</triggers>
<conditions>
<and>
<username operator="Equal" value="BSEGA1H" />
</and>
</conditions>
<actions>
<addTag value="Bally Sports Southeast" />
<addTag value="Home Market" />
</actions>
</rule>