diff --git a/pkg/database/corpus.go b/pkg/database/corpus.go index 637f340..eacac8f 100644 --- a/pkg/database/corpus.go +++ b/pkg/database/corpus.go @@ -1,11 +1,18 @@ package database type CorpusEntry struct { - CRS string `json:"3ALPHA"` - NLC int `json:"NLC"` - NLCDESC string `json:"NLCDESC"` - NLCDESC16 string `json:"NLCDESC16"` - STANOX string `json:"STANOX"` - TIPLOC string `json:"TIPLOC"` - UIC string `json:"UIC"` + CRS string `json:"3ALPHA,omitempty"` + NLC int `json:"NLC,omitempty"` + NLCDESC string `json:"NLCDESC,omitempty"` + NLCDESC16 string `json:"NLCDESC16,omitempty"` + STANOX string `json:"STANOX,omitempty"` + TIPLOC string `json:"TIPLOC,omitempty"` + UIC string `json:"UIC,omitempty"` +} + +type StationEntry struct { + CRS string `json:"3ALPHA,omitempty"` + NLCDESC string `json:"NLCDESC,omitempty"` + STANOX string `json:"STANOX,omitempty"` + TIPLOC string `json:"TIPLOC,omitempty"` }