public static string GetUpcomingBills(Chamber chamber) => $"https://api.propublica.org/congress/v1/bills/upcoming/{chamber.Description()}.json";
 public static string GetAllCongressMembers(Chamber chamber, int congress) => $"https://api.propublica.org/congress/v1/{congress}/{chamber.Description()}/members.json";
 public static string GetRecentBills(Chamber chamber, BillType billType, int congress) => $"https://api.propublica.org/congress/v1/{congress}/{chamber.Description()}/bills/{billType.Description()}.json";