Bugfix for a schema mismatch in trim bounds parsing

This commit is contained in:
2026-05-08 13:10:54 -05:00
parent 5565ced3d3
commit 7d61901585

View File

@@ -30,8 +30,8 @@ type SessionBounds struct {
ExcludedPrefixSummary string `json:"excluded_prefix_summary"`
ExcludedSuffixSummary string `json:"excluded_suffix_summary"`
Warnings []any `json:"warnings"`
StartEvidence []any `json:"start_evidence"`
EndEvidence []any `json:"end_evidence"`
StartEvidence any `json:"start_evidence"`
EndEvidence any `json:"end_evidence"`
}
// ParseSessionBoundsFile reads and parses one Scriptorium bounds output JSON file.