openstates/legislative_session_node.go

16 lines
460 B
Go
Raw Permalink Normal View History

2019-04-08 12:23:51 +00:00
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"`
2019-04-08 12:23:51 +00:00
}
const (
ClassificationPrimary = "primary"
ClassificationSpecial = "special"
)