Structural Validation

Back to Ladders
{{ if .Error }} {{ end }}

Off-Ladder Products

Published products not attached to any ladder. Informational: an off-ladder product confers without occupying a plan position.

{{ if eq (len .OrphanProducts) 0 }} {{ else }}
{{ range .OrphanProducts }} {{ end }}
Product ID Name Action
{{ .ProductID }} {{ .Name }} View in Products
{{ end }}

Multi-Active Attachments

Pools with multiple active ladder attachments on the same ladder (should be impossible under GiST exclusion).

{{ if eq (len .MultiActivePools) 0 }} {{ else }}
{{ range .MultiActivePools }} {{ end }}
Pool ID Ladder Active Count
{{ .PoolID }} {{ .LadderKey }} {{ .ActiveCount }}
{{ end }}

Malformed Rank Sequences

Ladders whose tier ranks are not contiguous from 0. Rank 0 is a ladder's base tier — org-type default resolution and the member catalog depend on it — and every panel authoring path keeps ranks 0..N−1, so these rows indicate data written outside the panel. Fix by reordering the ladder's tiers on its detail page.

{{ if eq (len .MalformedRankLadders) 0 }} {{ else }}
{{ range .MalformedRankLadders }} {{ end }}
Ladder Tiers Rank range Action
{{ .Name }} {{ .LadderID }} {{ .TierCount }} {{ .MinRank }}–{{ .MaxRank }} Open ladder
{{ end }}