The standings table shows where every team sits in each group at any point during the season. Rankings update automatically the moment a referee finalises a match — no manual entry required. Each group is sorted by points, with a multi-step tiebreaker system resolving any dead heats.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/Danielsl4/TFG_DAM_2526_Consulta2/llms.txt
Use this file to discover all available pages before exploring further.
How standings work
When a match is markedfinalizado, the system immediately updates team_stats for both teams based on the result:
| Outcome | Points awarded |
|---|---|
| Win | 3 points |
| Draw | 1 point each |
| Loss | 0 points |
- PJ (played) — total matches completed
- G (won) — wins
- E (drawn) — draws
- P (lost) — losses
- GF (goals for) — total goals scored
- GC (goals against) — total goals conceded
- Pts (points) — accumulated league points
- Yellow cards — total yellow cards received
- Red cards — total red cards received
Tiebreaker order
When teams are level on points, the system resolves ties differently depending on the number of tied teams: Two teams tied:- Head-to-head points
- Overall goal difference (
goals_for − goals_against) - Disciplinary record (
yellow_cards + red_cards × 3, lower is better) - Goals scored
- Goals conceded (fewer is better)
- Team ID (deterministic fallback)
- Head-to-head points among the tied teams
- Disciplinary record (
yellow_cards + red_cards × 3, lower is better) - Head-to-head goal difference among the tied teams
- Head-to-head goals scored among the tied teams
Filtering by season and group
The standings page shows all groups for the currently active season by default. Use the season switcher to load classifications from any previous season. The API accepts aseason_id query parameter; omitting it returns the active season automatically.
Groups are displayed as separate tables on the same page. Each group table lists its teams in ranked order from first to last place.
Reading the table
| Column | Full name | What it means |
|---|---|---|
| PJ | Partidos Jugados | Total finished matches |
| G | Ganados | Wins |
| E | Empatados | Draws |
| P | Perdidos | Losses |
| GF | Goles a Favor | Goals scored |
| GC | Goles en Contra | Goals conceded |
| +/- | Goal difference | GF minus GC |
| Pts | Puntos | Total league points |