The Sort Configuration page controls the order in which sports and tournaments are displayed in the broadcast schedule. By specifying an ordered list of sport IDs and tournament IDs, you define how the schedule is sorted when multiple sports or tournaments overlap.

The Sort Configuration uses two arrays of numeric IDs:
| Field | Type | Purpose |
|---|---|---|
sportIds | Array of numbers | The preferred display order of sports. Sports listed first are given higher priority in the schedule. |
tournamentIds | Array of numbers | The preferred display order of tournaments within a sport. Tournaments listed first appear earlier in the broadcast. |
{
"sportIds": [1, 2, 4],
"tournamentIds": [100, 200, 305]
}sportIds — a list of Sportradar sport IDs in the order you want them to appear. Sports not listed fall back to a default ordering.tournamentIds — a list of Sportradar tournament IDs in the order you want them to appear within their sport. Tournaments not listed fall back to default ordering.Use the Hierarchy Preview panel on the right to browse available sports and tournaments. Each item in the tree shows its name. You can identify the corresponding IDs by cross-referencing with the Sportradar data platform, or by checking the URL parameters in the schedule view.
If no sort configuration has been saved, the default is:
{
"sportIds": [1],
"tournamentIds": []
}Sport ID 1 corresponds to football. Tournaments are not explicitly ordered by default.
See Configuration for the step-by-step instructions on editing, validating, and saving any configuration page.