openstates/legislative_session_node.go

16 lines
460 B
Go

package openstates
type LegislativeSessionNode struct {
Jurisdiction *JurisdictionNode `json:"jurisdiction"`
Identifier string `json:"identifier"`
Name string `json:"name"`
Classification string `json:"classification"`
StartDate string `json:"startDate"`
EndDate string `json:"endDate"`
}
const (
ClassificationPrimary = "primary"
ClassificationSpecial = "special"
)