commit ccd4dc6f50bae4859f034bffc052b2524dabd1b7 Author: Bill Sun Date: Sat Nov 25 10:25:13 2023 -0500 initial commit diff --git a/mongodb/Dockerfile b/mongodb/Dockerfile new file mode 100644 index 0000000..14840ce --- /dev/null +++ b/mongodb/Dockerfile @@ -0,0 +1,26 @@ +# You can change these variables to use a different base image, but +# you must ensure that your base image inherits from one of ours. +# You can also override these at build time with --build-arg flags +ARG BASE_REPO=gradescope/autograder-base +ARG TAG=latest + +FROM ${BASE_REPO}:${TAG} + +ADD source /autograder/source + +RUN cp /autograder/source/run_autograder /autograder/run_autograder + +# Ensure that scripts are Unix-friendly and executable +RUN dos2unix /autograder/run_autograder /autograder/source/setup.sh +RUN chmod +x /autograder/run_autograder + +# Do whatever setup was needed in setup.sh, including installing apt packages +# Cleans up the apt cache afterwards in the same step to keep the image small +RUN apt-get update && \ + bash /autograder/source/setup.sh && \ + apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* + +# You can also use RUN commands in the Dockerfile to install things +# instead of using a bash script + +# The base image defines the CMD and ENTRYPOINT, so don't redefine those diff --git a/mongodb/results.json b/mongodb/results.json new file mode 100644 index 0000000..220148d --- /dev/null +++ b/mongodb/results.json @@ -0,0 +1 @@ +{"output": "", "score": 3, "max_score": 8} \ No newline at end of file diff --git a/mongodb/source/autograder.py b/mongodb/source/autograder.py new file mode 100644 index 0000000..e3614e8 --- /dev/null +++ b/mongodb/source/autograder.py @@ -0,0 +1,59 @@ +import pymongo, json + +# dbprep +fsroot = '/autograder/source/' +datasets = ['congress', 'bills'] +db = pymongo.MongoClient('mongodb://127.0.0.1')['test'] + +def evaluate(query : str): + import re + query = re.sub(r'(\$?[\d\w]+)\s*:', r'"\1" :', query) + query = re.sub(r'[\r|\n]|.\s*pretty\s*\(\s*\)', '', query).strip() + return list(eval(query))[0] if query else None + +for d in datasets: + with open(fsroot + d + '.json', encoding = 'utf-8') as f: + db[d].insert_many(json.load(f)) + +from solution import sols +answers = [evaluate(s) for s in sols] + +# grading +from os import listdir +from importlib.util import module_from_spec, spec_from_file_location +subroot = '/autograder/submission/' +feedback = '' +submissions = [subroot + f for f in listdir(subroot) if f.strip().lower().endswith('.py')] + +grade = 0 +n_queries = len(sols) + +if submissions: + submission = submissions[0] + + for i in range(n_queries): + feedback += f'Query {i + 1}: ' + try: + spec = spec_from_file_location('curr', submission) + module = module_from_spec(spec) + spec.loader.exec_module(module) + q = getattr(module, f'query{i + 1}')() + if evaluate(q) == answers[i]: + grade += 1 + feedback += 'Correct.\n' + else: + feedback += 'Wrong Answer.\n' + except Exception: + feedback += 'Runtime Error.\n' +else: + feedback += 'No python file in submission.\n' + +# output +results = { + 'output': feedback, + 'score': grade * 100 / n_queries, + 'max_score': 100, +} + +with open('/autograder/results/results.json', 'w') as res: + json.dump(results, res) diff --git a/mongodb/source/bills.json b/mongodb/source/bills.json new file mode 100644 index 0000000..87d1326 --- /dev/null +++ b/mongodb/source/bills.json @@ -0,0 +1,356 @@ +[ + { + "bill_id": "hr2739-113", + "bill_type": "hr", + "number": "H.R.2739", + "bill_uri": "https://api.propublica.org/congress/v1/113/bills/hr2739.json", + "title": "Efficient Use of Government Spectrum Act of 2013", + "sponsor_title": "Rep.", + "sponsor_id": "M001163", + "sponsor_name": "Doris Matsui", + "sponsor_state": "CA", + "sponsor_party": "D", + "sponsor_uri": "https://api.propublica.org/congress/v1/members/M001163.json", + "gpo_pdf_uri": "http://www.gpo.gov/fdsys/pkg/BILLS-113hr2739ih/pdf/BILLS-113hr2739ih.pdf", + "congressdotgov_url": "https://www.congress.gov/bill/113th-congress/house-bill/2739", + "govtrack_url": "https://www.govtrack.us/congress/bills/113/hr2739", + "introduced_date": "2013-07-18", + "active": false, + "house_passage": null, + "senate_passage": null, + "enacted": null, + "vetoed": null, + "cosponsors": 4, + "committees": "House Armed Services Committee", + "committee_codes": [ + "HSAS", + "HSIF" + ], + "subcommittee_codes": [ + "HSAS26", + "HSIF16" + ], + "primary_subject": "Science, Technology, Communications", + "summary": "Efficient Use of Government Spectrum Act of 2013 - Directs the Federal Communications Commission (FCC), within three years after enactment of the Middle Class Tax Relief and Job Creation Act of 2012, to: (1) reallocate electromagnetic spectrum between the frequencies from 1755 to 1780 megahertz (currently, such frequencies are occupied by the Department of Defense [DOD] and other federal agencies); and (2) as part of the competitive bidding auctions required by such Act, grant new initial licenses, subject to flexible-use service rules, for the use of such spectrum, paired with the spectrum between frequencies from 2155 to 2180 megahertz already designated for auction. Directs the proceeds attributable to the competitive bidding of the 1755 to 1780 megahertz range to be allocated in the same manner as other specified frequencies pursuant to such Act for uses including reimbursements to agencies for relocation and sharing costs, the building of the nationwide public safety broadband network, and deposits or reimbursements to the U.S. Treasury. Requires such spectrum to be relocated in a manner to ensure cooperation between federal and commercial entities under procedures in the National Telecommunications and Information Administration Organization Act, except for DOD-operated spectrum, which shall be relocated under the National Defense Authorization Act for Fiscal Year 2000. Directs federal entities operating a federal government station, within a specified period before commencement of competitive bidding, to identify stations that cannot be relocated without jeopardizing essential military capability. Requires the transition plans of federal entities identifying such essential spectrum to: (1) provide for non-federal users to share such stations, and (2) limit any necessary exclusion zones to the smallest possible zones. Directs the President to withdraw assignments upon relocation or to modify assignments to permit federal and non-federal use.", + "summary_short": "Efficient Use of Government Spectrum Act of 2013 - Directs the Federal Communications Commission (FCC), within three years after enactment of the Middle Class Tax Relief and Job Creation Act of 2012, to: (1) reallocate electromagnetic spectrum between the frequencies from 1755 to 1780 megahertz (currently, such frequencies are occupied by the Department of Defense [DOD] and other federal agencies); and (2) as part of the competitive bidding auctions required by such Act, grant new initial lic...", + "latest_major_action_date": "2013-08-29", + "latest_major_action": "Referred to the Subcommittee on Intelligence, Emerging Threats & Capabilities." + }, + { + "bill_id": "hr3355-113", + "bill_type": "hr", + "number": "H.R.3355", + "bill_uri": "https://api.propublica.org/congress/v1/113/bills/hr3355.json", + "title": "Reducing Employer Burdens, Unleashing Innovation, and Labor Development Act of 2013", + "sponsor_title": "Rep.", + "sponsor_id": "G000558", + "sponsor_name": "Brett Guthrie", + "sponsor_state": "KY", + "sponsor_party": "R", + "sponsor_uri": "https://api.propublica.org/congress/v1/members/G000558.json", + "gpo_pdf_uri": "http://www.gpo.gov/fdsys/pkg/BILLS-113hr3355ih/pdf/BILLS-113hr3355ih.pdf", + "congressdotgov_url": "https://www.congress.gov/bill/113th-congress/house-bill/3355", + "govtrack_url": "https://www.govtrack.us/congress/bills/113/hr3355", + "introduced_date": "2013-10-28", + "active": false, + "house_passage": null, + "senate_passage": null, + "enacted": null, + "vetoed": null, + "cosponsors": 0, + "committees": "House Armed Services Committee", + "committee_codes": [ + "HSFA", + "HSSY", + "HSAP", + "HSRU", + "HSJU", + "HSHA", + "HSII", + "HSED", + "HSAS", + "HSWM", + "HSIF" + ], + "subcommittee_codes": [ + "HSAS26", + "HSED02", + "HSED13", + "HSJU05", + "HSSY20", + "HSIF14", + "HSII24", + "HSII06" + ], + "primary_subject": "Economics and Public Finance", + "summary": "Reducing Employer Burdens, Unleashing Innovation, and Labor Development Act of 2013 - Expresses the sense of Congress that increasing the competitiveness of U.S. manufacturers will strengthen the national economy. Title I: Investing in America's Workforce - Investing in America's Workforce Act - Amends the Workforce Investment Act of 1998 to require state or local workforce investment systems to use youth activities funds allocated to a local area for programs that provide training, which may include priority consideration for training programs that lead to recognized postsecondary credentials aligned with in-demand occupations or industries in the local area involved. Authorizes the operator and employees of a one-stop center, in assisting individuals in selecting programs of training services, to give priority consideration to such programs. Adds to eligibility requirements for providers of training services and providers of youth activities for such programs. Requires programs of training services and youth activities programs that lead to a recognized postsecondary credential to meet quality criteria established by the state governor. Amends the Carl D. Perkins Career and Technical Education Act of 2006 and the Trade Act of 1974 to require the same priority consideration in the state and local plans for career and technical education programs as well as in tech prep programs and trade adjustment assistance (TAA) programs. Title II: Research and Development Tax Credits - Amends the Internal Revenue Code to: (1) extend through 2014 the tax credit for increasing research activities, and (2) increase and make permanent the alternative simplified research tax credit. Title III: Comprehensive Tax Reform - Directs the Chair of the Joint Committee on Taxation to notify Congress of any introduced tax reform bill that contains proposals for: (1) a transition to a more globally competitive corporate tax code, (2) a reduction in the complexity of the tax code, and (3) the elimination of special interest loopholes in the tax code. Sets forth procedures for expedited congressional consideration of such bill. Title IV: Federal Oil and Gas Resources - Subtitle A: Expanding Offshore Energy Development - Amends the Outer Continental Shelf Lands Act (OCSLA) regarding the Outer Continental Shelf (OCS) oil and natural gas leasing program to direct the Secretary of the Interior (Secretary in this title) to make lands available for leasing and to conduct lease sales that include: (1) at least 50% of the available unleased acreage within each OCS planning area considered to have the largest undiscovered, technically recoverable oil and gas resources, with an emphasis upon offering the most geologically prospective parts; and (2) any state subdivision of an OCS planning area whose state governor requests that the land be made available for leasing. Directs the Secretary to make available for leasing in each five-year oil and gas leasing program, OCS planning areas that are estimated to contain more than 2.5 billion barrels of oil or more than 7.5 trillion cubic feet of natural gas. Directs the Secretary, when determining such planning areas, to use the document entitled "Minerals Management Service Assessment of Undiscovered Technically Recoverable Oil and Gas Resources of the Nation's Outer Continental Shelf, 2006." Requires the Secretary, when developing a five-year oil and gas leasing program that applies before 2027, to determine increased domestic strategic production goals. Subtitle B: Coastal Plain of Alaska - American Energy Independence and Price Reduction Act - Directs the Secretary to: (1) establish a competitive oil and gas leasing program that will result in an environmentally sound program for the exploration, development, and production of the oil and gas resources of the Coastal Plain; and (2) ensure the oil and gas exploration, development, and production activities on the Coastal Plain will result in no significant adverse effect on fish and wildlife, their habitat, subsistence resources, or the environment, including by requiring the application of the best commercially available technology for oil and gas exploration, development, and production to all exploration, development, and production operations under this subtitle in a manner that ensures the receipt of fair market value by the public for the mineral resources to be leased. Amends the Alaska National Interest Lands Conservation Act of 1980 to repeal the prohibition against production of oil and gas from the Arctic National Wildlife Refuge (ANWR) and against leasing or other development leading to such production. Authorizes the Secretary to designate as a Special Area up to 45,000 acres of the Coastal Plain. Permits directional drilling in the Special Area. Directs the Secretary to implement a competitive leasing program for the exploration, development, and production of oil and gas resources on the Coastal Plain of Alaska. Permits lease sales to be conducted through an Internet leasing program. Prescribes procedures governing Coastal Plain lease sales, as well as lease terms and conditions. Authorizes the Secretary to grant Coastal Plain lands to the highest responsible qualified bidder in a lease sale upon the lessee's payment of a bonus. Sets forth: (1) a "no significant adverse effect" standard to govern Coastal Plain activities, and (2) guidelines for expedited judicial review of complaints. Requires the Secretary to prepare and update periodically a plan for the siting and construction of facilities for the exploration, development, production, and transportation of Coastal Plain oil and gas resources. Establishes the ANWR Alternative Energy Trust Fund as repository for 50% of the amount of bonus, rental, and royalty revenues from federal oil and gas leasing and operations authorized under this title. Title V: Energy Consumers Relief - Requires the Administrator of the Environmental Protection Agency (EPA), before promulgating a final rule that regulates any aspect of the production, supply, distribution, or use of energy (or that provides for such regulation by state or local governments) and that is estimated by the Administrator or the Director of the Office of Management and Budget (OMB) to impose aggregate costs of more than $1 billion, to submit a report that contains: (1) an estimate of the total costs and benefits of the rule, (2) an estimate of the increases in energy prices that may result from implementation or enforcement of the rule, and (3) a detailed description of the employment effects that may result from implementation or enforcement of the rule. Requires the Secretary of Energy (DOE): (1) to prepare an independent analysis to determine whether such rule will cause any increase in energy prices for consumers, any impact on fuel diversity of the nation's electricity generation portfolio or on electric reliability, or any adverse effect on energy supply, distribution, or use; and (2) upon making such a determination, to determine whether the rule will cause significant adverse effects to the economy and publish such determination in the Federal Register. Prohibits the Administrator from promulgating any such final rule if the Secretary determines that such rule will cause significant adverse effects to the economy. Prohibits the Administrator from using the social cost of carbon in any cost-benefit analysis relating to an energy-related rule estimated to cost more than $1 billion unless and until a federal law is enacted authorizing such use. Title VI: Repeal of the Health Care Law and Health Care-Related Provisions in the Health Care and Education Reconciliation Act of 2010 - Repealing the Health Care Law Act - Repeals the Patient Protection and Affordable Care Act and the health care provisions of the Health Care and Education and Reconciliation Act of 2010, effective as of their enactment. Restores or revives provisions amended or repealed by such Act or such health care provisions. Title VII: Cooperative Governing of Individual Health Insurance Coverage - Amends the Public Health Service Act to require that the laws of the state designated by a health insurance issuer (primary state) shall apply to individual health insurance coverage offered by that issuer in the primary state and in any other state (secondary state), but only if the coverage and issuer comply with conditions of this title. Title VIII: Renewal of Trade Promotion Authority - Amends the Bipartisan Trade Promotion Authority Act of 2002 to authorize the President to enter into trade agreements with foreign countries regarding tariff and nontariff trade barriers: (1) on and after enactment of this Act and before July 1, 2018; or (2) on and after July 1, 2018, and before July 1, 2020, if certain congressional trade authorities procedures for implementing trade bills are extended for that period. Applies certain congressional and presidential trade authorities requirements to trade agreements that resulted from negotiations commenced before enactment of this Act. Title IX: Reform of Export Control Policies - Expresses the sense of Congress that the Export Administration Act of 1979, as continued in effect by the International Emergency Economic Powers Act, is obsolete and should be reformed and reauthorized. Title X: Efficient Use of Government Spectrum - Efficient Use of Government Spectrum Act of 2013 - Directs the Federal Communications Commission (FCC), within three years after enactment of the Middle Class Tax Relief and Job Creation Act of 2012: (1) to reallocate electromagnetic spectrum between the frequencies from 1755 to 1780 megahertz (currently, such frequencies are occupied by the Department of Defense [DOD] and other federal agencies) for commercial use; and (2) as part of the competitive bidding auctions required by such Act, to grant new initial licenses, subject to flexible-use service rules, for the use of such spectrum, paired with the spectrum between frequencies from 2155 to 2180 megahertz already designated for auction. Directs the proceeds attributable to the competitive bidding of the 1755 to 1780 megahertz range to be allocated in the same manner as other specified frequencies pursuant to such Act for uses including reimbursements to agencies for relocation and sharing costs, the building of the nationwide public safety broadband network, and deposits or reimbursements to the U.S. Treasury. Requires such spectrum to be relocated in a manner to ensure cooperation between federal and commercial entities under procedures in the National Telecommunications and Information Administration Organization Act, except for DOD-operated spectrum, which shall be relocated under the National Defense Authorization Act for Fiscal Year 2000. Directs federal entities operating a federal government station, within a specified period before commencement of competitive bidding, to identify stations that cannot be relocated without jeopardizing essential military capability. Requires the transition plans of federal entities identifying such essential spectrum to: (1) provide for non-federal users to share such stations, and (2) limit any necessary exclusion zones to the smallest possible zones. Directs the President to withdraw assignments upon relocation or to modify assignments to permit federal and non-federal use.", + "summary_short": "Reducing Employer Burdens, Unleashing Innovation, and Labor Development Act of 2013 - Expresses the sense of Congress that increasing the competitiveness of U.S. manufacturers will strengthen the national economy. Title I: Investing in America's Workforce - Investing in America's Workforce Act - Amends the Workforce Investment Act of 1998 to require state or local workforce investment systems to use youth activities funds allocated to a local area for programs that provide training, which may...", + "latest_major_action_date": "2014-01-24", + "latest_major_action": "Referred to the Subcommittee on Intelligence, Emerging Threats & Capabilities." + }, + { + "bill_id": "s2473-113", + "bill_type": "s", + "number": "S.2473", + "bill_uri": "https://api.propublica.org/congress/v1/113/bills/s2473.json", + "title": "Wireless Innovation Act of 2014", + "sponsor_title": "Sen.", + "sponsor_id": "R000595", + "sponsor_name": "Marco Rubio", + "sponsor_state": "FL", + "sponsor_party": "R", + "sponsor_uri": "https://api.propublica.org/congress/v1/members/R000595.json", + "gpo_pdf_uri": "http://www.gpo.gov/fdsys/pkg/BILLS-113s2473is/pdf/BILLS-113s2473is.pdf", + "congressdotgov_url": "https://www.congress.gov/bill/113th-congress/senate-bill/2473", + "govtrack_url": "https://www.govtrack.us/congress/bills/113/s2473", + "introduced_date": "2014-06-12", + "active": false, + "house_passage": null, + "senate_passage": null, + "enacted": null, + "vetoed": null, + "cosponsors": 0, + "committees": "Senate Commerce, Science, and Transportation Committee", + "committee_codes": [ + "SSCM" + ], + "subcommittee_codes": [], + "primary_subject": "Science, Technology, Communications", + "summary": "Wireless Innovation Act of 2014 - Amends the National Telecommunications and Information Administration Organization Act to require the Secretary of Commerce to report to the President and Congress with recommendations to reallocate a span of at least 200 megahertz of spectrum, located below 5 gigahertz, from federal government use to: (1) commercial use on an exclusive, licensed basis; (2) unlicensed use to protect licensed services from harmful interference; and (3) shared use between federal government stations and non-federal stations. Requires the Federal Communications Commission (FCC) to begin auctioning specified amounts of such spectrum beginning not later than December 31, 2018, and to continue such auctions at 18-month intervals according to a staggered schedule. Authorizes the Director of the Office of Management and Budget (OMB) to use a percentage of the proceeds from the first auction to pay federal entities to: (1) conduct feasibility analyses regarding the potential future reallocation of additional spectrum from federal use to exclusive non-federal use or shared use; and (2) develop efficiency guidelines to increase the flexibility of federal spectrum-dependent systems through multiple-band tuning capabilities, the use of commercial systems, and public-private partnerships. Amends the Communications Act of 1934 to establish a presumption under which an application to the FCC for the transfer of a construction permit or station license is deemed to be in the public interest, convenient, and necessary, unless the FCC acts to deny the application, if the application does not: (1) involve a broadcast, common carrier, aeronautical en route, or aeronautical fixed radio station license that is prohibited from being granted to or held by an alien or foreign corporation; (2) require a premerger notification and waiting period under the Clayton Act; and (3) concern a merger, acquisition, or takeover subject to review under the Defense Production Act of 1950. Requires applications qualifying for such presumption to be granted within 90 days after the FCC issues a public notice of the application. Directs federal agencies seeking a new or modified frequency assignment for a mobile or other radio service to submit to the Secretary and the OMB a report analyzing whether the federal agency could instead use commercial services, use an existing or already planned federal service, share with another federal agency, use unlicensed spectrum, or lease from commercial providers. Directs the National Telecommunications and Information Administration (NTIA) and the OMB to incorporate spectrum efficiency guidelines into budget and procurement processes. Requires NTIA to develop a framework for determining the annual economic opportunity cost of each specific federal spectrum band allocated for federal entities, with the value determined as if such spectrum were to be reallocated on a licensed basis to the highest commercial alternative use that currently does not have access to that spectrum. Requires federal entities assigned or allocated use of federal spectrum to: (1) report the opportunity cost of spectrum bands in budgets and annual financial statements; and (2) compare, every five years, the entity's spectrum opportunity cost to the projected costs of relocating, co-locating, leasing, or contracting out for spectrum activities.", + "summary_short": "Wireless Innovation Act of 2014 - Amends the National Telecommunications and Information Administration Organization Act to require the Secretary of Commerce to report to the President and Congress with recommendations to reallocate a span of at least 200 megahertz of spectrum, located below 5 gigahertz, from federal government use to: (1) commercial use on an exclusive, licensed basis; (2) unlicensed use to protect licensed services from harmful interference; and (3) shared use between feder...", + "latest_major_action_date": "2014-06-12", + "latest_major_action": "Read twice and referred to the Committee on Commerce, Science, and Transportation." + }, + { + "bill_id": "s2278-114", + "bill_type": "s", + "number": "S.2278", + "bill_uri": "https://api.propublica.org/congress/v1/114/bills/s2278.json", + "title": "Promoting Unlicensed Spectrum Act of 2015", + "sponsor_title": "Sen.", + "sponsor_id": "S001194", + "sponsor_name": "Brian Schatz", + "sponsor_state": "HI", + "sponsor_party": "D", + "sponsor_uri": "https://api.propublica.org/congress/v1/members/S001194.json", + "gpo_pdf_uri": "http://www.gpo.gov/fdsys/pkg/BILLS-114s2278is/pdf/BILLS-114s2278is.pdf", + "congressdotgov_url": "https://www.congress.gov/bill/114th-congress/senate-bill/2278", + "govtrack_url": "https://www.govtrack.us/congress/bills/114/s2278", + "introduced_date": "2015-11-10", + "active": false, + "house_passage": null, + "senate_passage": null, + "enacted": null, + "vetoed": null, + "cosponsors": 0, + "committees": "Senate Commerce, Science, and Transportation Committee", + "committee_codes": [ + "SSCM" + ], + "subcommittee_codes": [], + "primary_subject": "Science, Technology, Communications", + "summary": "Promoting Unlicensed Spectrum Act of 2015 This bill requires the Federal Communications Commission (FCC) to ensure that spectrum allocation and assignment produces a balance between radio frequency bands available for: (1) exclusive licensing through an auction, and (2) unlicensed operations on a nonexclusive basis without the expectation of protection from interference. The FCC must consider whether to adopt rules that permit unlicensed operations in spectrum assigned by auction until the licensee brings the spectrum into use by initiating commercial service. The bill declares that it is the policy of the United States to: maximize the utility of the spectrum resources of the United States, advance innovation and investment in wireless broadband services, and promote a balanced spectrum policy that makes adequate spectrum resources available for both licensed and unlicensed technologies. The FCC must consult with the National Telecommunications and Information Administration (NTIA) to develop a national strategy for making additional radio frequency bands available for unlicensed operations. The strategy must: (1) identify proposed radio frequency bands to be cleared of incumbent users; (2) ensure that consumers have access to additional low-, mid-, and high-band frequencies for unlicensed operations; and (3) consider rules and other ways to promote spectrum sharing and improve spectrum utilization. The NTIA, in conjunction with the FCC and the Office of Management and Budget, must submit to Congress a report on the steps necessary to designate additional radio frequency bands used by federal entities for unlicensed operations without causing harmful interference to government operations. The report must consider the impact on homeland security or national security communications and include recommendations to ensure the solvency of the Spectrum Relocation Fund. ", + "summary_short": "Promoting Unlicensed Spectrum Act of 2015 This bill requires the Federal Communications Commission (FCC) to ensure that spectrum allocation and assignment produces a balance between radio frequency bands available for: (1) exclusive licensing through an auction, and (2) unlicensed operations on a nonexclusive basis without the expectation of protection from interference. The FCC must consider whether to adopt rules that permit unlicensed operations in spectrum assigned by auction until the ...", + "latest_major_action_date": "2015-11-10", + "latest_major_action": "Read twice and referred to the Committee on Commerce, Science, and Transportation." + }, + { + "bill_id": "s1618-114", + "bill_type": "s", + "number": "S.1618", + "bill_uri": "https://api.propublica.org/congress/v1/114/bills/s1618.json", + "title": "Wireless Innovation Act of 2015", + "sponsor_title": "Sen.", + "sponsor_id": "R000595", + "sponsor_name": "Marco Rubio", + "sponsor_state": "FL", + "sponsor_party": "R", + "sponsor_uri": "https://api.propublica.org/congress/v1/members/R000595.json", + "gpo_pdf_uri": "http://www.gpo.gov/fdsys/pkg/BILLS-114s1618is/pdf/BILLS-114s1618is.pdf", + "congressdotgov_url": "https://www.congress.gov/bill/114th-congress/senate-bill/1618", + "govtrack_url": "https://www.govtrack.us/congress/bills/114/s1618", + "introduced_date": "2015-06-18", + "active": false, + "house_passage": null, + "senate_passage": null, + "enacted": null, + "vetoed": null, + "cosponsors": 5, + "committees": "Senate Commerce, Science, and Transportation Committee", + "committee_codes": [ + "SSCM" + ], + "subcommittee_codes": [], + "primary_subject": "Science, Technology, Communications", + "summary": "Wireless Innovation Act of 2015 Amends the National Telecommunications and Information Administration Organization Act to require the Secretary of Commerce to report to the President and Congress with recommendations to reallocate a span of at least 200 megahertz of spectrum, located below 5 gigahertz, from federal government use to: (1) commercial use on an exclusive, licensed basis; (2) unlicensed use to protect licensed services from harmful interference; and (3) shared use between federal government stations and nonfederal stations. Requires the Federal Communications Commission (FCC) to begin auctioning specified amounts of such spectrum beginning not later than December 31, 2018, and to continue such auctions at 18-month intervals according to a staggered schedule. Authorizes the Office of Management and Budget (OMB) to use a percentage of the proceeds from the first auction to pay federal entities to: (1) conduct feasibility analyses regarding the potential future reallocation of additional spectrum from federal use to exclusive nonfederal use or shared use; and (2) develop efficiency guidelines to increase the flexibility of federal spectrum-dependent systems through multiple-band tuning capabilities, the use of commercial systems, and public-private partnerships. Amends the Communications Act of 1934 to establish a presumption under which an application to the FCC for the transfer of a construction permit or station license is deemed to be in the public interest, convenient, and necessary, unless the FCC acts to deny the application, if the application does not: (1) involve a broadcast, common carrier, aeronautical en route, or aeronautical fixed radio station license that is prohibited from being granted to or held by an alien or foreign corporation; (2) require a premerger notification and waiting period under the Clayton Act; and (3) concern a merger, acquisition, or takeover subject to review under the Defense Production Act of 1950. Requires applications qualifying for such presumption to be granted within 90 days after the FCC issues a public notice of the application. Directs federal agencies seeking a new or modified frequency assignment for a mobile or other radio service to submit to the Secretary and the OMB a report analyzing whether the federal agency could instead use commercial services, use an existing or already planned federal service, share with another federal agency, use unlicensed spectrum, or lease from commercial providers. Directs the National Telecommunications and Information Administration (NTIA) and the OMB to incorporate spectrum efficiency guidelines into budget and procurement processes. Requires the NTIA to develop a framework for determining the annual economic opportunity cost of each specific federal spectrum band allocated for federal entities, with the value determined as if such spectrum were to be reallocated on a licensed basis to the highest commercial alternative use that currently does not have access to that spectrum. Requires federal entities assigned or allocated use of federal spectrum to: (1) report the opportunity cost of spectrum bands in budgets and annual financial statements; and (2) compare, every five years, the entity's spectrum opportunity cost to the projected costs of relocating, co-locating, leasing, or contracting out for spectrum activities. Revises federal easement and right-of-way procedures to allow an executive agency, a state, a person, a firm, or an organization to apply for the grant of a real property interest (including a lease, license, easement, or right-of-way) to, in, over, or on a building or other property owned by the federal government for the right to install, construct, modify, and maintain a communications facility installation. Requires the executive agency that owns the building or other property on behalf of the federal government to grant to the applicant, if technically feasible, a real property interest to perform such installation, construction, modification, and maintenance. Sets forth requirements concerning the fees and terms of years for such real property interests. Provides for the collection of: (1) a standard fee established by the General Services Administration (GSA), or (2) agency-specific fees established by executive agencies. Directs the GSA to consult with designated agencies regarding the master application forms and standard contracts that executive agencies are required to accept for the placement of such facilities, unless the GSA determines that the forms or contracts are not adequate for a specific building or property.", + "summary_short": "Wireless Innovation Act of 2015 Amends the National Telecommunications and Information Administration Organization Act to require the Secretary of Commerce to report to the President and Congress with recommendations to reallocate a span of at least 200 megahertz of spectrum, located below 5 gigahertz, from federal government use to: (1) commercial use on an exclusive, licensed basis; (2) unlicensed use to protect licensed services from harmful interference; and (3) shared use between federal...", + "latest_major_action_date": "2015-06-18", + "latest_major_action": "Read twice and referred to the Committee on Commerce, Science, and Transportation." + }, + { + "bill_id": "s2555-114", + "bill_type": "s", + "number": "S.2555", + "bill_uri": "https://api.propublica.org/congress/v1/114/bills/s2555.json", + "title": "MOBILE NOW Act", + "sponsor_title": "Sen.", + "sponsor_id": "T000250", + "sponsor_name": "John Thune", + "sponsor_state": "SD", + "sponsor_party": "R", + "sponsor_uri": "https://api.propublica.org/congress/v1/members/T000250.json", + "gpo_pdf_uri": "https://www.gpo.gov/fdsys/pkg/BILLS-114s2555rs/pdf/BILLS-114s2555rs.pdf", + "congressdotgov_url": "https://www.congress.gov/bill/114th-congress/senate-bill/2555", + "govtrack_url": "https://www.govtrack.us/congress/bills/114/s2555", + "introduced_date": "2016-02-11", + "active": true, + "house_passage": null, + "senate_passage": null, + "enacted": null, + "vetoed": null, + "cosponsors": 1, + "committees": "Senate Commerce, Science, and Transportation Committee", + "committee_codes": [ + "SSCM" + ], + "subcommittee_codes": [], + "primary_subject": "Science, Technology, Communications", + "summary": "Making Opportunities for Broadband Investment and Limiting Excessive and Needless Obstacles to Wireless Act or the MOBILE NOW Act (Sec. 3) This bill requires the National Telecommunications and Information Administration (NTIA) and the Federal Communications Commission (FCC), by December 31, 2020, to make available at least 255 megahertz of federal and nonfederal spectrum below the frequency of 6000 megahertz for mobile and fixed wireless broadband use. At least: (1) 100 megahertz shall be made available on an unlicensed basis; and (2) 100 megahertz shall be made available on an exclusive, licensed basis for commercial mobile use, subject to the FCC's regulatory purview, including consideration of continued use of such spectrum by incumbent federal or nonfederal entities in designated geographic areas indefinitely. In making such spectrum available, the Department of Commerce and the FCC must consider: (1) the need to preserve critical existing and planned federal government capabilities; (2) the impact on existing state, local, and tribal government capabilities; (3) international implications; (4) appropriate enforcement mechanisms and authorities; and (5) the importance of the deployment of wireless broadband services in rural areas. (Sec. 4) The NTIA must submit to Congress and the FCC an assessment of the feasibility of authorizing mobile or fixed terrestrial wireless operations, including for advanced mobile service operations, on federal entities and operations in specified frequency bands. The FCC must publish a notice of proposed rulemaking within two years after enactment of this bill, or within 90 days after it receives the NTIA's feasibility assessment, whichever is earlier, to consider service rules authorizing such operations. (Sec. 5) Commerce and the FCC must submit reports evaluating the feasibility of allowing commercial wireless services to share use of specified frequencies between 3100 and 4200 megahertz. If such sharing is feasible, the reports must identify which of the frequencies are most suitable for sharing with commercial wireless services through the assignment of new licenses by competitive bidding, for sharing with unlicensed operations, or through a combination of licensing and unlicensed operations. The FCC must seek public comment regarding these reports. (Sec. 6) Before 2017, the FCC must take action in its Program Alternatives for Small Wireless Communications Facility Deployments proceeding. (Sec. 7) The Middle Class Tax Relief and Job Creation Act of 2012 is amended to require executive agencies, within 270 days after receiving an application, to grant or deny easements, rights-of-way, or leases to, in, over, or on federal property to install, construct, modify, or maintain a communications facility installation. Executive agencies must: (1) notify applicants of the reasons for denials, and (2) designate an agency point of contact for applicants. The bill expands the categories of infrastructure, antennas, wiring, and wireless transmission equipment for which applicants may seek such easements, rights-of-way, or leases. The NTIA must coordinate with the Departments of the Interior, Agriculture, Defense, and Transportation (DOT), the Office of Management and Budget (OMB), and the General Services Administration to develop recommendations for tracking and expediting such applications. (Sec. 8) To facilitate installation of broadband infrastructure, DOT must ensure that states receiving federal-aid highway funds: (1) identify a broadband utility coordinator to coordinate the broadband infrastructure right-of-way needs of the state with federal-aid highway projects, (2) register broadband infrastructure entities that seek to be included in those coordination efforts, (3) coordinate statewide telecommunication and broadband plans and state and local transportation and land use plans, (4) provide strategies to minimize repeated excavations, and (5) ensure that any existing broadband infrastructure entities are not disadvantaged. (Sec. 9) The Office of Science and Technology Policy (OSTP) must establish a single database of real property owned, leased, or managed by executive agencies that is capable of supporting a communications facility installation. The OSTP must make the database available to: (1) entities that construct or operate communications facility installations or provide communications service, and (2) state and local governments so that they may provide information regarding state and local properties to include in the database. The OSTP must report to Congress regarding potential ways to incentivize state and local governments to provide such information. (Sec. 10) After notice and an opportunity for public comment, Commerce must submit recommendations to incentivize federal entities to relinquish, or share with federal or nonfederal users, federal spectrum for commercial wireless broadband services. It must consider whether permitting eligible federal entities to accept payments could expedite access to eligible frequencies. (Sec. 11) The FCC must collaborate with the NTIA to determine the best means of providing federal entities flexible access to nonfederal spectrum on a shared basis across a range of short-, mid-, and long-range timeframes, including for intermittent purposes like emergency use. (Sec. 12) After public notice and comment, the FCC must adopt rules that permit unlicensed services to use guard bands designated to protect frequencies allocated by competitive bidding if it would not cause harmful interference. (Sec. 13) The OMB may provide pre-auction funding to federal agencies for auctions intended to occur within eight years (currently, five years) after the transfer of funds. (Sec. 14) Federal entities may request an immediate transfer of funds to pay for relocation or sharing costs after the frequencies are reallocated by competitive bidding. (Sec. 15) The FCC must provide notice and an opportunity for public comment before it submits reports regarding: (1) the results of rule changes relating to the frequencies between 3550 and 3650 megahertz, and (2) proposals to promote and identify additional spectrum bands that can be shared between incumbent uses and new licensed and unlicensed services under such rules and that identify at least 1 gigahertz between 6 and 57 gigahertz for such use. (Sec. 16) The Government Accountability Office must recommend policies to increase the availability of broadband Internet access using unlicensed spectrum and wireless networks in low-income neighborhoods, particularly for elementary and school-aged children. (Sec. 17) The FCC must assess whether to establish a program, or modify existing programs, under which a licensee that receives a license for the exclusive use of spectrum in a specific geographic area may partition or disaggregate the license by sale or long-term lease to provide services consistent with the license and make unused spectrum available to: (1) unaffiliated small carriers with not more than 1,500 employees, or (2) other unaffiliated carriers to serve rural areas. (Sec. 18) The bill declares that it is U.S. policy to: (1) maximize U.S. spectrum resources to benefit U.S. people, (2) advance wireless broadband innovation and investment, and (3) make available on an unlicensed basis radio frequency bands sufficient to meet consumer demand. The FCC must ensure that its spectrum allocation and assignment efforts make available on an unlicensed basis radio frequency bands sufficient to meet demand for unlicensed wireless broadband operations if doing so is reasonable and in the public interest after taking into account the future needs of other spectrum users. (Sec. 19) The FCC must develop a national plan for making additional radio frequency bands available for unlicensed operations. The NTIA must recommend reforms to the Spectrum Relocation Fund to address federal entities' sharing costs and expenditures under the plan. (Sec. 20) The NTIA must conduct prize competitions to accelerate the development and commercialization of technology that improves spectrum efficiency and is capable of cost-effective deployment. Not more than $5 million, in the aggregate, may be awarded to prize competition winners. The FCC must publish a technical paper providing criteria that may be used for the design of such competitions. Wireless Telecommunications Tax and Fee Collection Fairness Act of 2016 (Sec. 21) State and local jurisdictions are prohibited from requiring a person to collect from, or remit on behalf of, any other person a state or local tax, fee, or surcharge imposed on the purchase or use of any wireless telecommunications service within the state unless the collection or remittance is in connection with a financial transaction between: (1) the person that the state or local jurisdiction requires to collect or remit the tax, fee, or surcharge; and (2) the purchaser or user of the wireless telecommunications service. Any person who is aggrieved by a violation of such prohibition may bring a civil action in U.S. district court for equitable relief.", + "summary_short": "Making Opportunities for Broadband Investment and Limiting Excessive and Needless Obstacles to Wireless Act or the MOBILE NOW Act (Sec. 3) This bill requires the National Telecommunications and Information Administration (NTIA) and the Federal Communications Commission (FCC), by December 31, 2020, to make available at least 255 megahertz of federal and nonfederal spectrum below the frequency of 6000 megahertz for mobile and fixed wireless broadband use. At least: (1) 100 megahertz shall be m...", + "latest_major_action_date": "2016-12-20", + "latest_major_action": "By Senator Thune from Committee on Commerce, Science, and Transportation filed written report under authority of the order of the Senate of 12/10/2016. Report No. 114-427." + }, + { + "bill_id": "hr1314-114", + "bill_type": "hr", + "number": "H.R.1314", + "bill_uri": "https://api.propublica.org/congress/v1/114/bills/hr1314.json", + "title": "Bipartisan Budget Act of 2015", + "sponsor_title": "Rep.", + "sponsor_id": "M001181", + "sponsor_name": "Pat Meehan", + "sponsor_state": "PA", + "sponsor_party": "R", + "sponsor_uri": "https://api.propublica.org/congress/v1/members/M001181.json", + "gpo_pdf_uri": "https://www.gpo.gov/fdsys/pkg/BILLS-114hr1314enr/pdf/BILLS-114hr1314enr.pdf", + "congressdotgov_url": "https://www.congress.gov/bill/114th-congress/house-bill/1314", + "govtrack_url": "https://www.govtrack.us/congress/bills/114/hr1314", + "introduced_date": "2015-03-04", + "active": true, + "house_passage": "2015-10-27", + "senate_passage": "2015-05-21", + "enacted": "2015-11-01", + "vetoed": null, + "cosponsors": 2, + "committees": "House Ways and Means Committee", + "committee_codes": [ + "SSFI", + "HSWM" + ], + "subcommittee_codes": [], + "primary_subject": "Economics and Public Finance", + "summary": "(This measure has not been amended since the Senate agreed to the House amendment to the Senate amendment on October 30, 2015. The summary of that version is repeated here.) Bipartisan Budget Act of 2015 TITLE I--BUDGET ENFORCEMENT (Sec. 101) This bill amends the Balanced Budget and Emergency Deficit Control Act of 1985 to increase the discretionary spending limits for FY2016 and FY2017. The bill revises procedures for implementing the sequester of direct spending, which is required under current law and involves cuts that interact with discretionary spending levels. The bill requires the sequester to take place in FY2016 and FY2017 as if the amendments that this bill makes to the discretionary spending limits have not been made. It also adds an additional year to the sequester in FY2025 and adjusts the cuts required for Medicare. (Direct spending, also known as mandatory spending, is spending provided by laws other than appropriations bills. Sequestration is a process of automatic, usually across-the-board spending reductions under which budgetary resources are permanently cancelled to enforce specific budget policy goals.) The bill requires the discretionary spending limits in FY2016 and FY2017 to be increased by specified amounts for overseas contingency operations. (Sec. 102) The chairman of the Senate Budget Committee must file for publication in the Congressional Record committee allocations, aggregate spending and revenue levels, and levels of revenues and outlays for Social Security consistent with this bill. The chairman may also include reserve funds contained in the FY2016 budget resolution that are extended by one year. The bill provides that the allocations, aggregates, and levels submitted by the chairman are enforceable in the Senate as if they were included in a budget resolution conference agreement. The provisions in this section expire if Congress agrees to a budget resolution for FY2017. TITLE II--AGRICULTURE (Sec. 201) The bill amends the Federal Crop Insurance Act to require the Department of Agriculture (USDA) to renegotiate the Standard Reinsurance Agreement no later than December 31, 2016, and at least once every five years thereafter. (The Standard Reinsurance Agreement is an agreement between USDA and the private companies that administer the federal crop insurance program. It specifies details such as administrative and operating expense reimbursements and risk sharing between USDA and the companies in the operation of the program.) The bill establishes an 8.9% cap on the overall rate of return for insurance providers under the agreement, which is a decrease from the current negotiated rate of approximately 14.5%. TITLE III--COMMERCE (Sec. 301) The bill amends the Communications Act of 1934 to authorize the use of automated telephone equipment to call cellular telephones for the purpose of collecting debts owed to the U.S. government. The Federal Communications Commission must issue regulations implementing this section within nine months of enactment of this bill. The regulations may restrict the number and duration of the calls. TITLE IV--STRATEGIC PETROLEUM RESERVE (Sec. 401) The Energy Policy and Conservation Act is amended to revise the requirement that the Department of Energy (DOE) transmit a detailed explanation to Congress regarding a test drawdown and sale or exchange of petroleum products from the Strategic Petroleum Reserve (SPR). DOE shall notify Congress of the test at least 14 days before the date on which it is conducted, unless an emergency requires the test, in which case DOE must notify Congress as soon as possible. The detailed description of the test DOE is currently required to submit to Congress must be submitted within 180 days after completion of the test. The term "severe energy supply interruption" shall now include a national energy supply shortage resulting, or is likely to result, from an act of terrorism. (Sec. 402) DOE shall within 180 days after enactment of this Act: complete a long-range strategic review of the SPR and submit to Congress a proposed action plan and implementation schedule specifying both near- and long-term roles of the SPR relative to U.S. energy and economic security; describe whether existing legal authorities governing SPR policies, configuration, and capabilities are adequate to ensure that the SPR can meet current and future U.S. energy and economic security objectives; identify SPR configuration and performance capabilities; recommend an action plan to achieve the optimal capacity, location, and composition of SPR petroleum products in addition to storage and distributional capabilities; and estimate the resources required to attain and maintain SPR long-term sustainability and operational effectiveness. (Sec. 403) For each of FY2018-FY2025 DOE shall draw down and sell from the SPR specified barrels of crude oil ranging from 5 million (FY2018) to 10 million barrels (FY2025). DOE shall not, however, draw down and sell crude oil in amounts that would limit presidential authority to sell the full amount of petroleum products authorized when necessary to prevent or reduce the adverse impact of severe domestic energy supply interruptions. (Sec. 404) There is established in the Treasury the Energy Security and Infrastructure Modernization Fund for the deposit of SPR crude oil sales proceeds to provide for the construction, maintenance, repair, and replacement of SPR facilities. To protect the U.S. economy from the impacts of emergency product supply disruptions, DOE shall establish an SPR modernization program, for which appropriations are authorized for FY2017-2020. DOE authority to draw down and sell crude oil from the SPR under this section shall expire at the end of FY2020. TITLE V--PENSIONS (Sec. 501) This section amends the Employee Retirement Income Security Act of 1974 (ERISA) to increase the annual fixed rate premium payable to the Pension Benefits Guaranty Corporation by a single-employer plan for basic benefits to $69 in plan years beginning in 2017, $74 in plan years beginning in 2018, and $80 in plan years beginning after 2018. The variable rate premium for such plans increases by an additional $3 for plan years beginning in 2017 and by an additional $4 for plan years beginning in 2018 and 2019. (Sec. 502) This section changes the due date for premium payments for plan years beginning in 2025 to the 15th day of the 9th calendar month beginning on or after the 1st day of the premium payment year. (Sec. 503) This section changes criteria for mortality tables used by defined benefit pension plans for plan years beginning after 2015. The determination of whether a plan has credible mortality information shall be made in accordance with established actuarial credibility theory, which is materially different from current mortality rules under ERISA and Revenue Procedure 2007-37. A plan may use mortality tables that are adjusted from tables provided by the Department of the Treasury if such adjustments are based on a plan's experience. (Sec. 504) This section amends the Internal Revenue Code and ERISA to adjust interest rates used to calculate minimum funding contributions to pension plans The tables provide for adjustments to interest rates so that they fall within a range based on average interest rates over a 25-year period. For plan years beginning after 2015, the range variance is 10% through 2020, 15% in 2021, 20% in 2022, 25% in 2023, and 30% in 2024 and subsequent plan years. TITLE VI--HEALTH CARE (Sec. 601) The bill amends title XVIII (Medicare) of the Social Security Act (SSAct) to: (1) mitigate 2016 increases to Medicare Part B premiums and deductibles for enrollees, and (2) authorize federal funding to offset the corresponding reduction in aggregate monthly premiums. Under current law, the Centers for Medicare &amp; Medicaid Services must annually determine the monthly actuarial rate upon which Part B premiums and deductibles are based. For 2016, the bill revises this methodology, effectively reducing increases to premiums and deductibles for certain enrollees in 2016. (Current law already protects Part B enrollees whose benefits are deducted from their Social Security benefits from premium increases that would result in a smaller net benefit from Social Security.) This methodology shall also apply in 2017 if, as in 2016, there is no increase in monthly Social Security benefits. (Sec. 602) The bill amends title XIX (Medicaid) of the SSAct to require manufacturers of generic drugs to join manufacturers of single-source or innovator drugs in paying rebates to state Medicaid programs for price increases over inflation. (Sec. 603) The bill excludes certain hospital outpatient department services from the prospective payment system in which predetermined amounts form the basis for payment under Medicare. With specified exceptions, services are excluded from this system if they are furnished by a provider's off-campus outpatient department. (Sec. 604) The bill amends the Fair Labor Standards Act of 1938 to repeal the requirement, established under the Patient Protection and Affordable Care Act, for large employers offering health benefit plans to automatically enroll full-time employees in such a plan. A large employer is one that has more than 200 full-time employees. TITLE VII--JUDICIARY Federal Civil Penalties Inflation Adjustment Act Improvements Act of 2015 (Sec. 701) This title amends the Federal Civil Penalties Inflation Adjustment Act of 1990 to require federal agencies that impose civil monetary penalties subject to inflation adjustments under the Adjustment Act to adjust the penalties for inflation annually instead of at least every four years. The categories of penalties required to be adjusted for inflation under the Adjustment Act are expanded to include civil penalties under the Occupational Safety and Health Act of 1970 and the Social Security Act. For all civil penalties adjusted for inflation under the Adjustment Act, federal agencies must make an initial adjustment after enactment of this bill by the percentage by which the Consumer Price Index (CPI) for October 2015 exceeds the CPI for the month of October of the calendar year during which the amount of such civil monetary penalty was established or adjusted under a provision of law other than this bill. The increase in penalties from the initial adjustment is prohibited from exceeding 150% of the amount of that penalty on the date of enactment of this bill. An agency may adjust penalties by less than the required amount under an exception that applies to the first adjustment if: (1) the agency determines in a rulemaking with an opportunity for public comment that the adjustment would have a negative economic impact or social costs that outweigh the benefits, and (2) the Office of Management and Budget (OMB) concurs. The annual inflation adjustment in subsequent years must be a cost-of-living adjustment based on any increases in the October CPI each year. Inflation adjustment increases must be rounded to the nearest multiple of $1. This section also requires: (1) the OMB to issue guidance to agencies regarding the implementation of adjustments, (2) agencies to include information about adjustments to civil monetary penalties in agency financial reports, and (3) the Government Accountability Office to submit an annual report assessing agency compliance. (Sec. 702) This section rescinds and permanently cancels $1.5 billion of the funds deposited or available in the Crime Victims Fund under the Victims of Crime Act of 1984. (Sec. 703) This section rescinds and permanently cancels $746 million of the amounts deposited in the Department of Justice Assets Forfeiture Fund. TITLE VIII--SOCIAL SECURITY Social Security Benefit Protection and Opportunity Enhancement Act of 2015 Subtitle A--Ensuring Correct Payments and Reducing Fraud (Sec. 811) The Social Security Administration (SSA) must expand Cooperative Disability Investigations (CDI) Units that investigate suspected fraud before benefits are awarded to cover all 50 States, the District of Columbia, Puerto Rico, Guam, the Northern Mariana Islands, the Virgin Islands, and American Samoa. (Sec. 812) Title II (Old Age, Survivors and Disability Insurance) of the Social Security Act is amended to prohibit evidence submitted by unlicensed or sanctioned physicians and health care providers from being considered in making disability determinations. (Sec. 813) A new felony for conspiracy to commit Social Security fraud is created. Penalties for individuals in a position of trust who defraud the SSA are increased. Individuals are disqualified from receiving benefits during a trial work period if they are assessed a civil monetary penalty for concealing work activity. (Sec. 814) Prohibitions and penalties regarding the misuse of symbols, emblems, and names associated with Social Security and Medicare are applied to electronic and internet communications, and each internet viewing is treated as a separate offense. (Sec. 815) The Balanced Budget and Emergency Deficit Control Act of 1985 is amended to revise the permissible uses and amounts of adjustments to discretionary spending limits for program integrity spending. The permissible uses are expanded to include CDI units, Special Assistant U.S. Attorneys who prosecute Social Security fraud, and work-related continuing disability reviews. Subtitle B--Promoting Opportunity for Disability Beneficiaries (Sec. 821) The authority for Disability Insurance (DI) demonstration projects is extended through 2021 and all projects must be terminated by the end of 2022. (Sec. 822) The authority for DI demonstration projects is modified to: (1) revise congressional reporting and review requirements, and (2) require participation in the projects to be voluntary and include informed consent. (Sec. 823) The SSA must carry out a pilot program to test the effect on beneficiary earnings of changes in how earnings are treated for the purpose of ongoing DI benefit eligibility. Under the demonstration, the existing "cash cliff" under which beneficiaries lose their entire benefit after exceeding the earnings threshold would be replaced by a benefit offset under which the DI benefit is reduced by $1 for every $2 of earnings in excess of a threshold. (Sec. 824) The SSA may obtain, with beneficiary consent, data on beneficiary earnings from payroll providers through a data exchange. Individuals for whom the SSA obtains earnings data from these sources are exempt from the requirement to report their own earnings. (Sec. 825) The SSA may simplify the process of evaluating a beneficiary's earnings derived from services by presuming that wages and salaries were earned in: (1) the month in which the services were performed for making a determination of initial entitlement on the basis of disability, and (2) the month in which the earnings were paid for any other purpose. These presumptions apply unless information is available that shows when the income was earned. (Sec. 826) The SSA must permit DI beneficiaries to report their earnings electronically, including by telephone and Internet, based on the system that is currently available to Supplemental Security Income recipients. Subtitle C--Protecting Social Security Benefits (Sec. 831) Provisions in the Social Security Act related to deemed filing, dual entitlement, and benefit suspension are amended to prevent individuals from obtaining larger benefits than Congress intended. (Sec. 832) In making an initial determination of disability, the SSA must make every reasonable effort to ensure that a qualified physician, psychiatrist, or psychologist has completed the medical portion of the case review. (Sec. 833) Specified payroll tax revenues are reallocated to the Disability Insurance Trust Fund to pay benefits until 2022. (Sec. 834) The SSA may verify certain financial information when an individual requests a waiver of an overpayment because they are without fault and unable to repay the funds. Subtitle D--Relieving Administrative Burdens and Miscellaneous Provisions (Sec. 841) Under current law, the Office of Personnel Management (OPM) must reduce disability payments made to a Federal Employment Retirement (FERS) annuitant who also receives Social Security disability benefits. The bill increases interagency coordination by permitting SSA to repay the OPM the amount of overpaid FERS benefits if the individual is eligible for DI and entitled to an award of past-due benefits. The overpaid amounts are deducted from the past-due Social Security payment. (Sec. 842) The requirement that the SSA make determinations every five years relating to wage credits for military service prior to 1957 is eliminated after the 2010 determination. (Sec. 843) Electronic certification to the Railroad Retirement Board is permitted for benefits payable to a divorced spouse of a railroad worker. (Sec. 844) Technical and conforming changes are made to eliminate obsolete provisions from the Social Security Act. (Sec. 845) The SSA must report to Congress on: (1) fraud prevention activities and improper payments, (2) work-related continuing disability reviews, and (3) overpayment waivers. (Sec. 846) The SSA may request that OPM hold additional examinations for the purpose of hiring Administrative Law Judges as needed. TITLE IX--TEMPORARY EXTENSION OF PUBLIC DEBT LIMIT (Sec. 901) The public debt limit is suspended through March 15, 2017. On March 16, 2017, the limit is increased to accommodate obligations issued during the suspension period. (Sec. 902) Adjustments to the debt limit for obligations during the suspension period are limited to obligations necessary to fund a commitment incurred by the federal government that required payment before March 16, 2017. The Department of the Treasury may not issue obligations during the suspension period to increase cash balances above normal operating balances. TITLE X--SPECTRUM PIPELINE Spectrum Pipeline Act of 2015 (Sec. 1004) This title requires the Department of Commerce to submit to the President and to the Federal Communications Commission (FCC) a report identifying 30 megahertz of electromagnetic spectrum to reallocate from federal use to: (1) nonfederal use, (2) shared federal and nonfederal use, or (3) a combination of such uses. The President must then withdraw or modify the assignment to a federal government station of the identified spectrum. By July 1, 2024, the FCC must begin competitive bidding auctions to grant new initial licenses for that spectrum. (Sec. 1005) The National Telecommunications and Information Administration Organization Act is amended to make amounts available from the Spectrum Relocation Fund for the Office of Management and Budget (OMB) to pay federal entities for research and development activities to improve the efficiency and effectiveness of their spectrum use in order to make additional frequencies available for auction. As a condition to the OMB paying a federal entity for such activities, the federal entity must have a plan: (1) approved by a technical panel within the National Telecommunications and Information Administration (NTIA), and (2) submitted by the OMB to the appropriate congressional committees for a period of 60 days. (Sec. 1006) The FCC must coordinate with the NTIA to submit successive proposals to Congress by 2022 and by 2024 that identify additional spectrum to be assigned new licenses for nonfederal use. Each proposal must identify at least another 50 megahertz. (Sec. 1007) For purposes of auctioning the 30 megahertz that Commerce identifies under this Act, the FCC's authority to grant licenses or permits is extended until September 30, 2025. The FCC's authority continues to expire on September 30, 2022, for other competitive bidding auctions. (Sec. 1008) The FCC must submit to Congress, within three years after enactment of this Act, reports that analyze: (1) rules changes relating to frequencies between 3550 and 3650 megahertz, and (2) proposals to promote and identify additional spectrum bands that can be shared between incumbent uses and new licensed and unlicensed services under such rules. The FCC must also identify at least 1 gigahertz within a specified range for such use. TITLE XI--REVENUE PROVISIONS RELATED TO TAX COMPLIANCE (Sec. 1101) This section amends the Internal Revenue Code to revise rules for audits of large for-profit partnerships (partnerships with more than 100 partners). Existing audit rules for such partnerships are repealed and partnerships with fewer than 100 partners are granted an election to opt out of the provisions of this Act. The new audit rules require that: (1) any adjustment to items of partnership income, gain, loss, deductions, or credits be determined at the partnership level, instead of for each individual partner; (2) each partner's return be consistent with the partnership return; (3) each partnership designate a partner or other person with a substantial presence in the United States as the partnership representative to act as the sole authority on behalf of the partnership; and (4) notice be given to the partnership and the partnership representative of any administrative proceeding initiated at the partnership level, of any proposed partnership adjustment resulting from such proceeding, and of any final partnership adjustment resulting from such proceeding. The partnership may file a petition for readjustment of any partnership item within 90 days after the date on which a notice of a final partnership adjustment is mailed to the partnership. The petition may be filed with the U.S. Tax Court, a U.S. district court for the district in which the partnership's principal place of business is located, or the U.S. Court of Claims. The period for making adjustments to a partnership return is limited to the date that is three years (six years in the case of a substantial omission of income) after the latest of the date on which the partnership return was filed, the return due date for the taxable year, or the date on which the partnership filed an administrative adjustment request. No limit applies in the case of a false or fraudulent partnership return or if no return is filed. (Sec. 1102) This section sets forth a rule with respect to partnership interests created by gift to provide that in the case of a capital interest in a partnership in which capital is a material income-producing factor, the determination of whether a person is a partner with respect to such interest is made without regard to whether such interest was derived by gift from any other person. This new rule applies to partnership taxable years beginning on or after January 1, 2015. TITLE XII--DESIGNATION OF SMALL HOUSE ROTUNDA This title designates the first floor of the area of the House of Representatives wing of the U.S. Capitol known as the small House rotunda as the "Freedom Foyer."", + "summary_short": "(This measure has not been amended since the Senate agreed to the House amendment to the Senate amendment on October 30, 2015. The summary of that version is repeated here.) Bipartisan Budget Act of 2015 TITLE I--BUDGET ENFORCEMENT (Sec. 101) This bill amends the Balanced Budget and Emergency Deficit Control Act of 1985 to increase the discretionary spending limits for FY2016 and FY2017. The bill revises procedures for implementing the sequester of direct spending, which is required under c...", + "latest_major_action_date": "2015-11-02", + "latest_major_action": "Became Public Law No: 114-74." + }, + { + "bill_id": "s2644-114", + "bill_type": "s", + "number": "S.2644", + "bill_uri": "https://api.propublica.org/congress/v1/114/bills/s2644.json", + "title": "FCC Reauthorization Act of 2016", + "sponsor_title": "Sen.", + "sponsor_id": "T000250", + "sponsor_name": "John Thune", + "sponsor_state": "SD", + "sponsor_party": "R", + "sponsor_uri": "https://api.propublica.org/congress/v1/members/T000250.json", + "gpo_pdf_uri": "https://www.gpo.gov/fdsys/pkg/BILLS-114s2644is/pdf/BILLS-114s2644is.pdf", + "congressdotgov_url": "https://www.congress.gov/bill/114th-congress/senate-bill/2644", + "govtrack_url": "https://www.govtrack.us/congress/bills/114/s2644", + "introduced_date": "2016-03-07", + "active": true, + "house_passage": null, + "senate_passage": null, + "enacted": null, + "vetoed": null, + "cosponsors": 1, + "committees": "Senate Commerce, Science, and Transportation Committee", + "committee_codes": [ + "SSCM" + ], + "subcommittee_codes": [], + "primary_subject": "Science, Technology, Communications", + "summary": "FCC Reauthorization Act of 2016 (Sec. 4) This bill reauthorizes the Federal Communications Commission (FCC) for FY2017-FY2018. The bill designates amounts for: (1) the FCC's office of inspector general, and (2) the FCC to move to a new facility or reconfigure its existing facility. (Sec. 5) The bill allows a person chosen to fill a commissioner's vacancy on the FCC to continue to serve after the expiration of the fixed term of the commissioner that the person succeeds until a successor has taken office. But the person filling the vacancy may not continue to serve after the session of Congress that begins after the expiration of the fixed term of the commissioner that the person succeeds. (Sec. 6) The FCC must submit concurrently to Congress a copy of any budget estimates, requests, or legislative recommendations that it submits to the President or the Office of Management and Budget. No U.S. officer or agency may require the FCC to obtain that officer's or agency's approval before the FCC submits legislative recommendations to Congress. The FCC inspector general must concurrently submit its semiannual reports on the FCC's activities to both the FCC and Congress. (Sec. 7) The Government Accountability Office (GAO) must recommend adjustments to the FCC's regulatory fee structure in a report that considers: (1) the FCC's workload, (2) benefits to payors, and (3) whether the current fee structure has a disparate impact on certain technologies or small-sized payors. (Sec. 8) The Universal Service Antideficiency Temporary Suspension Act is amended to extend through FY2018 provisions rendering the Antideficiency Act inapplicable to: (1) amounts collected or received as universal service contributions, or (2) expenditures or obligations of such contributions. (Sec. 9) Any deposits that the FCC may require for the qualification of bidders in a system of competitive bidding for spectrum licenses must be deposited directly in the Treasury instead of in an interest bearing account at a financial institution. The bill removes a provision that requires the interest accrued to such a financial institution account to be dedicated for the sole purpose of deficit reduction. The deposits of successful bidders must be credited to the deposit fund of the Treasury, unless existing exceptions apply. (Sec. 10) The FCC is prohibited from changing its regulations for universal service support payments to implement the February 27, 2004, recommendations of the Federal-State Joint Board on Universal Service regarding single connection or primary line restrictions on universal service support payments. (Sec. 11) The Communications Act of 1934 is amended to expand the prohibition against knowingly transmitting misleading or inaccurate caller identification information to apply to: (1) persons outside the United States if the recipient of the call is within the United States, and (2) text messages. Existing caller identification requirements that apply to calls made using a telecommunications service or IP-enabled voice service are revised to apply to: (1) voice communications using resources from the North American Numbering Plan; and (2) transmissions from a telephone facsimile machine, computer, or other device to a telephone facsimile machine. The FCC must collaborate with the Federal Trade Commission (FTC) to regularly update education materials that help consumers identify: (1) scams and fraudulent activity that rely upon misleading or inaccurate caller identification information, and (2) existing technologies that consumers can use to protect against such fraud. The GAO must report on: (1) actions taken, or actions that could be taken, by the FCC or the FTC to combat the fraudulent provision of misleading or inaccurate caller identification information; and (2) any recommendations to combat the fraudulent provision of such information. Kari's Law Act of 2016 (Sec. 12) This section prohibits businesses from manufacturing or importing for use in the United States, or selling or leasing in the United States, a multi-line telephone system unless it can be installed to allow 9-1-1 calls to be transmitted to the appropriate public safety answering point: (1) without requiring the user to dial any additional digit, code, prefix, or post-fix (including any trunk-access code such as the digit "9"); and (2) regardless of what a user is required to dial for other calls. Businesses are prohibited from installing multi-line telephone systems unless upon installation they allow 9-1-1 calls to be initiated without dialing such additional codes. Installers must configure such systems to provide on-site notifications (if possible without improvement to the hardware) so that when a person at the facility where the system is installed initiates a 9-1-1 call, the system notifies: (1) a central location at the facility, or (2) a person or organization with responsibility for safety or security for the location. (Sec. 13) The FCC must complete a rulemaking proceeding relating to the placing of unauthorized charges on a consumer's telephone bill (commonly referred to as "cramming") to consider measures to block the placement of third-party charges on a consumer's wireline, wireless, or bundled services telephone bill under the criteria it relied upon when it entered into a consent decree relating to cramming with mobile voice and data service providers. (Sec. 14) The FCC must release a notice of inquiry to gather information and seek public comment on how to promote broadband Internet access service for veterans, in particular those with low-incomes or who reside in rural areas. (Sec. 15) The FCC must implement metrics to measure the impact of universal service support on the deployment and adoption of broadband on tribal lands by: (1) residents, (2) schools and libraries, and (3) health care facilities and rural health care providers. The FCC must report biennially on ways to overcome barriers to the adoption of broadband on tribal lands. It must also examine ways to measure impacts on: (1) tribe members who do not live on tribal land; and (2) schools, libraries, and health providers that are not located on tribal land but that serve large numbers of tribal land residents. (Sec. 16) The FCC must ensure that its chief information officer is authorized to participate in budget planning decisions related to information technology. The FCC must obtain the chief information officer's approval for the allocation of amounts appropriated to the FCC that are available for information technology. (Sec. 17) The FCC must include in press releases regarding its issuance of a notice of apparent liability for a forfeiture penalty a disclaimer informing consumers that: (1) the notice should be treated only as allegations, (2) any proposed forfeiture penalty represents the maximum penalty that the FCC may impose for the violations alleged in the notice. (Sec. 18) Every other year, the GAO must report on the annual opportunity cost of each federal spectrum band assigned or allocated for federal entities between 150 megahertz and 6000 megahertz. "Opportunity cost" is defined as the dollar value of the spectrum if it were to be reallocated to the highest commercial alternative use that currently does not have access to that spectrum. The FCC must also consider: (1)national security, (2) the ability of federal entities to move to new bands or share existing bands, (3) relocation costs, (4) market valuations from spectrum auctions and secondary spectrum trading, and (5) spectrum value on an exclusive or shared basis. Within two years after the bill's enactment and then every five years, the GAO must determine whether federal entities operating on federal spectrum allocations are using the most spectrum-efficient technologies available. If the technologies are not the most spectrum-efficient, the GAO must determine: (1) the upgrade costs and benefits, and (2) whether there are potential problems with upgrading. (Sec. 19) The GAO must recommend how to consolidate redundant filing requirements for telecommunications carriers that receive universal service support under the Universal Service Fund program. (Sec. 20) The FCC must report on the feasibility of conducting mobile broadband coverage drive testing in rural areas (to determine the scope of existing mobile broadband coverage) using U.S. Postal Service delivery systems and commercial entities. (Sec. 21) The GAO must report on the transition of telecommunications services in the United States from legacy telephone services to Internet Protocol-based services. The report must examine how the federal government: (1) is working with public and private sector stakeholders, and (2) can facilitate the transition in rural and low-income communities. (Sec. 22) The FCC must submit reports on the broadcast spectrum incentive auction required under the Middle Class Tax Relief and Job Creation Act of 2012. The FCC must address: (1) reimbursements requested by broadcast television licensees, how many television stations will be required to relocate to a new channel assignment, and bilateral spectrum coordination with Canada and Mexico; and (2) the construction schedule for the relocation of television stations to new channel assignments, whether viewers will face service interruptions, impacts on rural areas and translator services, and steps to expedite successful auction bidders' use of spectrum. (Sec. 23) The FCC must report on the Universal Service Rural Health Care Program and issue a notice of inquiry to evaluate whether the program is meeting its statutory goals. The report must include data on: (1) funding distributed to health care providers in each state since funding year 2013, (2) the types of providers and advanced telecommunications and information services funded, and (3) whether the Telecommunications Program (a program that provides discounts for telecommunications services for eligible health care providers) should be transitioned into the Healthcare Connect Fund. (Sec. 24) The GAO must report on the FCC's E-rate universal service support program for broadband Internet connections and Wi-Fi at schools and libraries. The report must review: (1) whether the Second E-rate Modernization Order adopted on December 11, 2014, has resulted in overbuilding and duplication, (2) gaps that still exist in Internet connectivity, and (3) recommendations to improve the program. (Sec. 25) The GAO must report on how public availability of the National Telecommunications and Information Administration's broadband inventory map helps the FCC ensure that the broadband data it collects is accurate, complete, and reliable. The report must evaluate the extent to which federal agencies or other entities authorized to distribute federal grants or loans for broadband projects rely on the map to: (1) award grants and loans for broadband projects, or (2) determine whether federal funds will be used to deploy broadband in areas already served by private broadband providers. The GAO must address challenges to the map's accuracy, the FCC's plans concerning the map's limitations for policy or funding decisions, and whether the FCC should collect data from additional or alternative commercial sources. (Sec. 26) The FCC must submit annual spectrum auction reports regarding: (1) each expenditure for competitive bidding during the preceding (currently, second preceding) fiscal year, (2) an estimate of what systems of competitive bidding may be initiated during the next year and the bands of frequencies it expects to include in the auctions, and (3) a justification for the use of auction proceeds retained by the FCC to develop and implement auctions. (Sec. 27) The FCC must report, and seek public comment, on its broadband deployment and subscription data collection practices and how data collection can be improved for fixed and mobile broadband.", + "summary_short": "FCC Reauthorization Act of 2016 (Sec. 4) This bill reauthorizes the Federal Communications Commission (FCC) for FY2017-FY2018. The bill designates amounts for: (1) the FCC's office of inspector general, and (2) the FCC to move to a new facility or reconfigure its existing facility. (Sec. 5) The bill allows a person chosen to fill a commissioner's vacancy on the FCC to continue to serve after the expiration of the fixed term of the commissioner that the person succeeds until a successor has ta...", + "latest_major_action_date": "2016-09-20", + "latest_major_action": "Placed on Senate Legislative Calendar under General Orders. Calendar No. 637." + }, + { + "bill_id": "s19-115", + "bill_type": "s", + "number": "S.19", + "bill_uri": "https://api.propublica.org/congress/v1/115/bills/s19.json", + "title": "MOBILE NOW Act", + "sponsor_title": "Sen.", + "sponsor_id": "T000250", + "sponsor_name": "John Thune", + "sponsor_state": "SD", + "sponsor_party": "R", + "sponsor_uri": "https://api.propublica.org/congress/v1/members/T000250.json", + "gpo_pdf_uri": "https://www.gpo.gov/fdsys/pkg/BILLS-115s19rs/pdf/BILLS-115s19rs.pdf", + "congressdotgov_url": "https://www.congress.gov/bill/115th-congress/senate-bill/19", + "govtrack_url": "https://www.govtrack.us/congress/bills/115/s19", + "introduced_date": "2017-01-03", + "active": true, + "house_passage": null, + "senate_passage": null, + "enacted": null, + "vetoed": null, + "cosponsors": 1, + "committees": "Senate Commerce, Science, and Transportation Committee", + "committee_codes": [ + "SSCM" + ], + "subcommittee_codes": [], + "primary_subject": "Science, Technology, Communications", + "summary": "Making Opportunities for Broadband Investment and Limiting Excessive and Needless Obstacles to Wireless Act or the MOBILE NOW Act (Sec. 3) This bill requires the National Telecommunications and Information Administration (NTIA) and the Federal Communications Commission (FCC), by December 31, 2020, to make available at least 255 megahertz of federal and nonfederal spectrum below the frequency of 6000 megahertz for mobile and fixed wireless broadband use. At least: (1) 100 megahertz shall be made available on an unlicensed basis; and (2) 100 megahertz shall be made available on an exclusive, licensed basis for commercial mobile use, pursuant to the FCC's authority to implement licensing in a flexible manner, and subject to potential continued use of such spectrum by incumbent federal entities in designated geographic areas indefinitely or for a length of time stipulated in transition plans approved by an NTIA technical panel for those incumbent entities to relocate to alternate spectrum. In making such spectrum available, the Department of Commerce and the FCC must consider: (1) the need to preserve critical existing and planned federal government capabilities; (2) the impact on existing state, local, and tribal government capabilities; (3) international implications; (4) appropriate enforcement mechanisms and authorities; and (5) the importance of the deployment of wireless broadband services in rural areas. (Sec. 4) The NTIA must submit to Congress and the FCC an assessment of the feasibility of authorizing mobile or fixed terrestrial wireless operations, including for advanced mobile service operations, on federal entities and operations in specified frequency bands. The FCC must publish a notice of proposed rulemaking within two years after enactment of this bill, or within 90 days after it receives the NTIA's feasibility assessment, whichever is earlier, to consider service rules authorizing such operations. (Sec. 5) Commerce and the FCC must submit reports evaluating the feasibility of allowing commercial wireless services to share use of specified frequencies between 3100 and 4200 megahertz. If such sharing is feasible, the reports must identify which of the frequencies are most suitable for sharing with commercial wireless services through the assignment of new licenses by competitive bidding, for sharing with unlicensed operations, or through a combination of licensing and unlicensed operations. The FCC must seek public comment regarding these reports. (Sec. 6) The Middle Class Tax Relief and Job Creation Act of 2012 is amended to require executive agencies, within 270 days after receiving an application, to grant or deny easements, rights-of-way, or leases to, in, over, or on federal property to install, construct, modify, or maintain a communications facility installation. Executive agencies must: (1) notify applicants of the reasons for denials, and (2) designate an agency point of contact for applicants. The bill expands the categories of infrastructure, antennas, wiring, and wireless transmission equipment for which applicants may seek such easements, rights-of-way, or leases. The NTIA must coordinate with the Departments of the Interior, Agriculture, Defense, and Transportation (DOT), the Office of Management and Budget (OMB), and the General Services Administration to develop recommendations for tracking and expediting such applications. (Sec. 7) To facilitate installation of broadband infrastructure, DOT must ensure that states receiving federal-aid highway funds: (1) identify a broadband utility coordinator to facilitate the broadband infrastructure right-of-way efforts within the state; (2) register broadband infrastructure entities that seek to be included in those facilitation efforts; (3) establish a process to electronically notify such entities of the state transportation improvement program on an annual basis; (4) coordinate statewide telecommunication and broadband plans and state and local transportation and land use plans, including strategies to minimize repeated excavations that involve the installation of broadband infrastructure in a right-of-way; and (5) ensure that any existing broadband infrastructure entities are not disadvantaged. Nothing in this section establishes a mandate or requirement that a state install broadband infrastructure in a highway right-of-way. (Sec. 8) The Office of Science and Technology Policy (OSTP) must establish a single database of real property owned, leased, or managed by executive agencies that is capable of supporting a communications facility installation. The OSTP must make the database available to: (1) entities that construct or operate communications facility installations or provide communications service, and (2) state and local governments so that they may provide information regarding state and local properties to include in the database. The OSTP must report to Congress regarding potential ways to incentivize state and local governments to provide such information. (Sec. 9) After notice and an opportunity for public comment, Commerce must submit recommendations to incentivize federal entities to relinquish, or share with federal or nonfederal users, federal spectrum for commercial wireless broadband services. It must consider whether permitting eligible federal entities to accept payments could expedite access to eligible frequencies. (Sec. 10) The FCC must collaborate with the NTIA to determine the best means of providing federal entities flexible access to nonfederal spectrum on a shared basis across a range of short-, mid-, and long-range timeframes, including for intermittent purposes like emergency use. (Sec. 11) After public notice and comment, the FCC must adopt rules that permit unlicensed services to use guard bands designated to protect frequencies allocated by competitive bidding if it would not cause harmful interference. (Sec. 12) The OMB may provide pre-auction funding to federal agencies for auctions intended to occur within eight years (currently, five years) after the transfer of funds. (Sec. 13) Federal entities may request an immediate transfer of funds to pay for relocation or sharing costs after the frequencies are reallocated by competitive bidding. (Sec. 14) The FCC must provide notice and an opportunity for public comment before it submits reports regarding: (1) the results of rule changes relating to the frequencies between 3550 and 3650 megahertz, and (2) proposals to promote and identify additional spectrum bands that can be shared between incumbent uses and new licensed and unlicensed services under such rules and that identify at least 1 gigahertz between 6 gigahertz and 57 gigahertz for such use. (Sec. 15) The Government Accountability Office must recommend policies to increase the availability of broadband Internet access using unlicensed spectrum and wireless networks in low-income neighborhoods, particularly for elementary and secondary school-aged children. (Sec. 16) The FCC must assess whether to establish a program, or modify existing programs, under which a licensee that receives a license for the exclusive use of spectrum in a specific geographic area may partition or disaggregate the license by sale or long-term lease to provide services consistent with the license and make unused spectrum available to: (1) unaffiliated small carriers with not more than 1,500 employees, or (2) other unaffiliated carriers to serve rural areas. (Sec. 17) The bill declares that it is U.S. policy to: (1) maximize U.S. spectrum resources to benefit U.S. people, (2) advance wireless broadband innovation and investment, and (3) make available on an unlicensed basis radio frequency bands sufficient to meet consumer demand. The FCC must ensure that its spectrum allocation and assignment efforts make available on an unlicensed basis radio frequency bands sufficient to meet demand for unlicensed wireless broadband operations if doing so is reasonable and in the public interest after taking into account the future needs of other spectrum users. (Sec. 18) The FCC must develop a national plan for making additional radio frequency bands available for unlicensed operations. The NTIA must recommend reforms to the Spectrum Relocation Fund to address federal entities sharing costs and expenditures under the plan. Spectrum Challenge Prize Act (Sec. 19) The NTIA must conduct prize competitions to accelerate the development and commercialization of technology that improves spectrum efficiency and is capable of cost-effective deployment. Not more than $5 million, in the aggregate, may be awarded to prize competition winners. The FCC must publish a technical paper providing criteria that may be used for the design of such competitions. Wireless Telecommunications Tax and Fee Collection Fairness Act (Sec. 20) State and local jurisdictions are prohibited from requiring a person to collect from, or remit on behalf of, any other person a state or local tax, fee, or surcharge imposed on the purchase or use of any wireless telecommunications service within the state unless the collection or remittance is in connection with a financial transaction in which the purchaser or user upon whom a tax, fee, or surcharge is imposed gives cash, credit, or any other exchange of monetary value or consideration to the person who is required to collect or remit the tax, fee, or surcharge. Any person who is aggrieved by a violation of such prohibition may bring a civil action in U.S. district court for equitable relief.", + "summary_short": "Making Opportunities for Broadband Investment and Limiting Excessive and Needless Obstacles to Wireless Act or the MOBILE NOW Act (Sec. 3) This bill requires the National Telecommunications and Information Administration (NTIA) and the Federal Communications Commission (FCC), by December 31, 2020, to make available at least 255 megahertz of federal and nonfederal spectrum below the frequency of 6000 megahertz for mobile and fixed wireless broadband use. At least: (1) 100 megahertz shall be m...", + "latest_major_action_date": "2017-03-21", + "latest_major_action": "Placed on Senate Legislative Calendar under General Orders. Calendar No. 17." + }, + { + "bill_id": "s1129-115", + "bill_type": "s", + "number": "S.1129", + "bill_uri": "https://api.propublica.org/congress/v1/115/bills/s1129.json", + "title": "Coast Guard Authorization Act of 2017", + "sponsor_title": "Sen.", + "sponsor_id": "S001198", + "sponsor_name": "Dan Sullivan", + "sponsor_state": "AK", + "sponsor_party": "R", + "sponsor_uri": "https://api.propublica.org/congress/v1/members/S001198.json", + "gpo_pdf_uri": "https://www.gpo.gov/fdsys/pkg/BILLS-115s1129rs/pdf/BILLS-115s1129rs.pdf", + "congressdotgov_url": "https://www.congress.gov/bill/115th-congress/senate-bill/1129", + "govtrack_url": "https://www.govtrack.us/congress/bills/115/s1129", + "introduced_date": "2017-05-16", + "active": true, + "house_passage": null, + "senate_passage": null, + "enacted": null, + "vetoed": null, + "cosponsors": 3, + "committees": "Senate Commerce, Science, and Transportation Committee", + "committee_codes": [ + "SSCM" + ], + "subcommittee_codes": [], + "primary_subject": "Public Lands and Natural Resources", + "summary": "", + "summary_short": "", + "latest_major_action_date": "2017-06-05", + "latest_major_action": "Placed on Senate Legislative Calendar under General Orders. Calendar No. 112." + } +] \ No newline at end of file diff --git a/mongodb/source/congress.json b/mongodb/source/congress.json new file mode 100644 index 0000000..109e11d --- /dev/null +++ b/mongodb/source/congress.json @@ -0,0 +1,24900 @@ +[ + { + "caucus": null, + "congress_numbers": [ + 115, + 116, + 117 + ], + "current": true, + "description": "Senior Senator for Idaho", + "district": null, + "enddate": "2023-01-03", + "extra": { + "address": "239 Dirksen Senate Office Building Washington DC 20510", + "contact_form": "https://www.crapo.senate.gov/contact", + "fax": "202-228-1375", + "office": "239 Dirksen Senate Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "C000880", + "birthday": "1951-05-20", + "cspanid": 26440, + "firstname": "Michael", + "gender": "male", + "gender_label": "Male", + "lastname": "Crapo", + "link": "https://www.govtrack.us/congress/members/michael_crapo/300030", + "middlename": "D.", + "name": "Sen. Michael “Mike” Crapo [R-ID]", + "namemod": "", + "nickname": "Mike", + "osid": "N00006267", + "pvsid": "26830", + "sortname": "Crapo, Michael “Mike” (Sen.) [R-ID]", + "twitterid": "MikeCrapo", + "youtubeid": "senatorcrapo" + }, + "phone": "202-224-6142", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class3", + "senator_class_label": "Class 3", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2017-01-03", + "state": "ID", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.crapo.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 115, + 116, + 117 + ], + "current": true, + "description": "Senior Senator for Iowa", + "district": null, + "enddate": "2023-01-03", + "extra": { + "address": "135 Hart Senate Office Building Washington DC 20510", + "contact_form": "http://www.grassley.senate.gov/contact", + "fax": "202-224-6020", + "office": "135 Hart Senate Office Building", + "rss_url": "http://grassley.senate.gov/customcf/rss_feed.cfm" + }, + "leadership_title": "President Pro Tempore of the Senate", + "party": "Republican", + "person": { + "bioguideid": "G000386", + "birthday": "1933-09-17", + "cspanid": 1167, + "firstname": "Charles", + "gender": "male", + "gender_label": "Male", + "lastname": "Grassley", + "link": "https://www.govtrack.us/congress/members/charles_grassley/300048", + "middlename": "E.", + "name": "Sen. Charles “Chuck” Grassley [R-IA]", + "namemod": "", + "nickname": "Chuck", + "osid": "N00001758", + "pvsid": "53293", + "sortname": "Grassley, Charles “Chuck” (Sen.) [R-IA]", + "twitterid": "ChuckGrassley", + "youtubeid": "senchuckgrassley" + }, + "phone": "202-224-3744", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class3", + "senator_class_label": "Class 3", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2017-01-03", + "state": "IA", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.grassley.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 115, + 116, + 117 + ], + "current": true, + "description": "Senior Senator for Vermont", + "district": null, + "enddate": "2023-01-03", + "extra": { + "address": "437 Russell Senate Office Building Washington DC 20510", + "contact_form": "https://www.leahy.senate.gov/contact/", + "fax": "202-224-3479", + "office": "437 Russell Senate Office Building", + "rss_url": "http://www.leahy.senate.gov/rss/feeds/press/" + }, + "leadership_title": "President Pro Tempore of the Senate", + "party": "Democrat", + "person": { + "bioguideid": "L000174", + "birthday": "1940-03-31", + "cspanid": 1552, + "firstname": "Patrick", + "gender": "male", + "gender_label": "Male", + "lastname": "Leahy", + "link": "https://www.govtrack.us/congress/members/patrick_leahy/300065", + "middlename": "J.", + "name": "Sen. Patrick Leahy [D-VT]", + "namemod": "", + "nickname": "", + "osid": "N00009918", + "pvsid": "53353", + "sortname": "Leahy, Patrick (Sen.) [D-VT]", + "twitterid": "SenatorLeahy", + "youtubeid": "SenatorPatrickLeahy" + }, + "phone": "202-224-4242", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class3", + "senator_class_label": "Class 3", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2017-01-03", + "state": "VT", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.leahy.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 115, + 116, + 117 + ], + "current": true, + "description": "Senior Senator for Alaska", + "district": null, + "enddate": "2023-01-03", + "extra": { + "address": "522 Hart Senate Office Building Washington DC 20510", + "contact_form": "https://www.murkowski.senate.gov/public/index.cfm/contact", + "fax": "202-224-5301", + "office": "522 Hart Senate Office Building", + "rss_url": "http://www.murkowski.senate.gov/public/?a=rss.feed" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "M001153", + "birthday": "1957-05-22", + "cspanid": 1004138, + "firstname": "Lisa", + "gender": "female", + "gender_label": "Female", + "lastname": "Murkowski", + "link": "https://www.govtrack.us/congress/members/lisa_murkowski/300075", + "middlename": "A.", + "name": "Sen. Lisa Murkowski [R-AK]", + "namemod": "", + "nickname": "", + "osid": "N00026050", + "pvsid": "15841", + "sortname": "Murkowski, Lisa (Sen.) [R-AK]", + "twitterid": "LisaMurkowski", + "youtubeid": "senatormurkowski" + }, + "phone": "202-224-6665", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class3", + "senator_class_label": "Class 3", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2017-01-03", + "state": "AK", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.murkowski.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 115, + 116, + 117 + ], + "current": true, + "description": "Senior Senator for Washington", + "district": null, + "enddate": "2023-01-03", + "extra": { + "address": "154 Russell Senate Office Building Washington DC 20510", + "contact_form": "http://www.murray.senate.gov/public/index.cfm/contactme", + "fax": "202-224-0238", + "office": "154 Russell Senate Office Building", + "rss_url": "http://www.murray.senate.gov/public/?a=rss.feed" + }, + "leadership_title": "Assistant Senate Majority Leader", + "party": "Democrat", + "person": { + "bioguideid": "M001111", + "birthday": "1950-10-11", + "cspanid": 25277, + "firstname": "Patty", + "gender": "female", + "gender_label": "Female", + "lastname": "Murray", + "link": "https://www.govtrack.us/congress/members/patty_murray/300076", + "middlename": "", + "name": "Sen. Patty Murray [D-WA]", + "namemod": "", + "nickname": "", + "osid": "N00007876", + "pvsid": "53358", + "sortname": "Murray, Patty (Sen.) [D-WA]", + "twitterid": "PattyMurray", + "youtubeid": "SenatorPattyMurray" + }, + "phone": "202-224-2621", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class3", + "senator_class_label": "Class 3", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2017-01-03", + "state": "WA", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.murray.senate.gov/public" + }, + { + "caucus": null, + "congress_numbers": [ + 115, + 116, + 117 + ], + "current": true, + "description": "Senior Senator for New York", + "district": null, + "enddate": "2023-01-03", + "extra": { + "address": "322 Hart Senate Office Building Washington DC 20510", + "contact_form": "https://www.schumer.senate.gov/contact/email-chuck", + "fax": "202-228-3027", + "office": "322 Hart Senate Office Building" + }, + "leadership_title": "Senate Majority Leader", + "party": "Democrat", + "person": { + "bioguideid": "S000148", + "birthday": "1950-11-23", + "cspanid": 5929, + "firstname": "Charles", + "gender": "male", + "gender_label": "Male", + "lastname": "Schumer", + "link": "https://www.govtrack.us/congress/members/charles_schumer/300087", + "middlename": "E.", + "name": "Sen. Charles “Chuck” Schumer [D-NY]", + "namemod": "", + "nickname": "Chuck", + "osid": "N00001093", + "pvsid": "26976", + "sortname": "Schumer, Charles “Chuck” (Sen.) [D-NY]", + "twitterid": "SenSchumer", + "youtubeid": "SenatorSchumer" + }, + "phone": "202-224-6542", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class3", + "senator_class_label": "Class 3", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2017-01-03", + "state": "NY", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.schumer.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 115, + 116, + 117 + ], + "current": true, + "description": "Senior Senator for Alabama", + "district": null, + "enddate": "2023-01-03", + "extra": { + "address": "304 Russell Senate Office Building Washington DC 20510", + "contact_form": "https://www.shelby.senate.gov/public/index.cfm/emailsenatorshelby", + "fax": "202-224-3416", + "office": "304 Russell Senate Office Building", + "rss_url": "http://www.shelby.senate.gov/public/index.cfm/rss/feed" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "S000320", + "birthday": "1934-05-06", + "cspanid": 1859, + "firstname": "Richard", + "gender": "male", + "gender_label": "Male", + "lastname": "Shelby", + "link": "https://www.govtrack.us/congress/members/richard_shelby/300089", + "middlename": "C.", + "name": "Sen. Richard Shelby [R-AL]", + "namemod": "", + "nickname": "", + "osid": "N00009920", + "pvsid": "53266", + "sortname": "Shelby, Richard (Sen.) [R-AL]", + "twitterid": "SenShelby", + "youtubeid": "SenatorRichardShelby" + }, + "phone": "202-224-5744", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class3", + "senator_class_label": "Class 3", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2017-01-03", + "state": "AL", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.shelby.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 115, + 116, + 117 + ], + "current": true, + "description": "Senior Senator for Oregon", + "district": null, + "enddate": "2023-01-03", + "extra": { + "address": "221 Dirksen Senate Office Building Washington DC 20510", + "contact_form": "https://www.wyden.senate.gov/contact/", + "fax": "202-228-2717", + "office": "221 Dirksen Senate Office Building", + "rss_url": "http://www.wyden.senate.gov/rss/feeds/?type=all&" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "W000779", + "birthday": "1949-05-03", + "cspanid": 1962, + "firstname": "Ron", + "gender": "male", + "gender_label": "Male", + "lastname": "Wyden", + "link": "https://www.govtrack.us/congress/members/ron_wyden/300100", + "middlename": "", + "name": "Sen. Ron Wyden [D-OR]", + "namemod": "", + "nickname": "", + "osid": "N00007724", + "pvsid": "27036", + "sortname": "Wyden, Ron (Sen.) [D-OR]", + "twitterid": "RonWyden", + "youtubeid": "senronwyden" + }, + "phone": "202-224-5244", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class3", + "senator_class_label": "Class 3", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2017-01-03", + "state": "OR", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.wyden.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 115, + 116, + 117 + ], + "current": true, + "description": "Senior Senator for Missouri", + "district": null, + "enddate": "2023-01-03", + "extra": { + "address": "260 Russell Senate Office Building Washington DC 20510", + "contact_form": "https://www.blunt.senate.gov/public/index.cfm/contact-roy", + "fax": "202-224-8149", + "office": "260 Russell Senate Office Building", + "rss_url": "http://www.blunt.senate.gov/public/?a=rss.feed" + }, + "leadership_title": "Senate Republican Policy Committee Chair", + "party": "Republican", + "person": { + "bioguideid": "B000575", + "birthday": "1950-01-10", + "cspanid": 45465, + "firstname": "Roy", + "gender": "male", + "gender_label": "Male", + "lastname": "Blunt", + "link": "https://www.govtrack.us/congress/members/roy_blunt/400034", + "middlename": "", + "name": "Sen. Roy Blunt [R-MO]", + "namemod": "", + "nickname": "", + "osid": "N00005195", + "pvsid": "418", + "sortname": "Blunt, Roy (Sen.) [R-MO]", + "twitterid": "RoyBlunt", + "youtubeid": "SenatorBlunt" + }, + "phone": "202-224-5721", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class3", + "senator_class_label": "Class 3", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2017-01-03", + "state": "MO", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.blunt.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 115, + 116, + 117 + ], + "current": true, + "description": "Senior Senator for Arkansas", + "district": null, + "enddate": "2023-01-03", + "extra": { + "address": "141 Hart Senate Office Building Washington DC 20510", + "contact_form": "https://www.boozman.senate.gov/public/index.cfm/contact", + "fax": "202-228-1371", + "office": "141 Hart Senate Office Building", + "rss_url": "http://www.boozman.senate.gov/public/index.cfm/rss/feed" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "B001236", + "birthday": "1950-12-10", + "cspanid": 92069, + "firstname": "John", + "gender": "male", + "gender_label": "Male", + "lastname": "Boozman", + "link": "https://www.govtrack.us/congress/members/john_boozman/400040", + "middlename": "", + "name": "Sen. John Boozman [R-AR]", + "namemod": "", + "nickname": "", + "osid": "N00013873", + "pvsid": "27958", + "sortname": "Boozman, John (Sen.) [R-AR]", + "twitterid": "JohnBoozman", + "youtubeid": "BoozmanPressOffice" + }, + "phone": "202-224-4843", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class3", + "senator_class_label": "Class 3", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2017-01-03", + "state": "AR", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.boozman.senate.gov/public" + }, + { + "caucus": null, + "congress_numbers": [ + 115, + 116, + 117 + ], + "current": true, + "description": "Senior Senator for North Carolina", + "district": null, + "enddate": "2023-01-03", + "extra": { + "address": "217 Russell Senate Office Building Washington DC 20510", + "contact_form": "https://www.burr.senate.gov/contact/email", + "fax": "202-228-2981", + "office": "217 Russell Senate Office Building", + "rss_url": "http://www.burr.senate.gov/public/index.cfm?fuseaction=rss.feed" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "B001135", + "birthday": "1955-11-30", + "cspanid": 31054, + "firstname": "Richard", + "gender": "male", + "gender_label": "Male", + "lastname": "Burr", + "link": "https://www.govtrack.us/congress/members/richard_burr/400054", + "middlename": "M.", + "name": "Sen. Richard Burr [R-NC]", + "namemod": "", + "nickname": "", + "osid": "N00002221", + "pvsid": "21787", + "sortname": "Burr, Richard (Sen.) [R-NC]", + "twitterid": "SenatorBurr", + "youtubeid": "SenatorRichardBurr" + }, + "phone": "202-224-3154", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class3", + "senator_class_label": "Class 3", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2017-01-03", + "state": "NC", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.burr.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 115, + 116, + 117 + ], + "current": true, + "description": "Senior Senator for Kansas", + "district": null, + "enddate": "2023-01-03", + "extra": { + "address": "521 Dirksen Senate Office Building Washington DC 20510", + "contact_form": "https://www.moran.senate.gov/public/index.cfm/e-mail-jerry", + "fax": "202-228-6966", + "office": "521 Dirksen Senate Office Building", + "rss_url": "http://www.moran.senate.gov/public/index.cfm/rss/feed/" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "M000934", + "birthday": "1954-05-29", + "cspanid": 45469, + "firstname": "Jerry", + "gender": "male", + "gender_label": "Male", + "lastname": "Moran", + "link": "https://www.govtrack.us/congress/members/jerry_moran/400284", + "middlename": "", + "name": "Sen. Jerry Moran [R-KS]", + "namemod": "", + "nickname": "", + "osid": "N00005282", + "pvsid": "542", + "sortname": "Moran, Jerry (Sen.) [R-KS]", + "twitterid": "JerryMoran", + "youtubeid": "senatorjerrymoran" + }, + "phone": "202-224-6521", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class3", + "senator_class_label": "Class 3", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2017-01-03", + "state": "KS", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.moran.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 115, + 116, + 117 + ], + "current": true, + "description": "Junior Senator for Ohio", + "district": null, + "enddate": "2023-01-03", + "extra": { + "address": "448 Russell Senate Office Building Washington DC 20510", + "contact_form": "https://www.portman.senate.gov/public/index.cfm/contact?p=contact-form", + "office": "448 Russell Senate Office Building", + "rss_url": "http://www.portman.senate.gov/public/index.cfm/rss/feed" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "P000449", + "birthday": "1955-12-19", + "cspanid": 31819, + "firstname": "Robert", + "gender": "male", + "gender_label": "Male", + "lastname": "Portman", + "link": "https://www.govtrack.us/congress/members/robert_portman/400325", + "middlename": "J.", + "name": "Sen. Robert “Rob” Portman [R-OH]", + "namemod": "", + "nickname": "Rob", + "osid": "N00003682", + "pvsid": "27008", + "sortname": "Portman, Robert “Rob” (Sen.) [R-OH]", + "twitterid": "SenRobPortman", + "youtubeid": "SenRobPortman" + }, + "phone": "202-224-3353", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class3", + "senator_class_label": "Class 3", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2017-01-03", + "state": "OH", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.portman.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 115, + 116, + 117 + ], + "current": true, + "description": "Junior Senator for Pennsylvania", + "district": null, + "enddate": "2023-01-03", + "extra": { + "address": "455 Dirksen Senate Office Building Washington DC 20510", + "contact_form": "https://www.toomey.senate.gov/?p=contact", + "fax": "202-228-0284", + "office": "455 Dirksen Senate Office Building", + "rss_url": "http://toomey.senate.gov/rss/?p=hot_topic" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "T000461", + "birthday": "1961-11-17", + "cspanid": 7958, + "firstname": "Patrick", + "gender": "male", + "gender_label": "Male", + "lastname": "Toomey", + "link": "https://www.govtrack.us/congress/members/patrick_toomey/400408", + "middlename": "J.", + "name": "Sen. Patrick “Pat” Toomey [R-PA]", + "namemod": "", + "nickname": "Pat", + "osid": "N00001489", + "pvsid": "24096", + "sortname": "Toomey, Patrick “Pat” (Sen.) [R-PA]", + "twitterid": "SenToomey", + "youtubeid": "sentoomey" + }, + "phone": "202-224-4254", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class3", + "senator_class_label": "Class 3", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2017-01-03", + "state": "PA", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.toomey.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 115, + 116, + 117 + ], + "current": true, + "description": "Junior Senator for Maryland", + "district": null, + "enddate": "2023-01-03", + "extra": { + "address": "110 Hart Senate Office Building Washington DC 20510", + "contact_form": "http://www.vanhollen.senate.gov/contact/email", + "fax": "202-225-0375", + "office": "110 Hart Senate Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "V000128", + "birthday": "1959-01-10", + "cspanid": 20756, + "firstname": "Chris", + "gender": "male", + "gender_label": "Male", + "lastname": "Van Hollen", + "link": "https://www.govtrack.us/congress/members/chris_van_hollen/400415", + "middlename": "", + "name": "Sen. Chris Van Hollen [D-MD]", + "namemod": "", + "nickname": "", + "osid": "N00013820", + "pvsid": "6098", + "sortname": "Van Hollen, Chris (Sen.) [D-MD]", + "twitterid": "ChrisVanHollen", + "youtubeid": "RepChrisVanHollen" + }, + "phone": "202-224-4654", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class3", + "senator_class_label": "Class 3", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2017-01-03", + "state": "MD", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.vanhollen.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 115, + 116, + 117 + ], + "current": true, + "description": "Senior Senator for South Dakota", + "district": null, + "enddate": "2023-01-03", + "extra": { + "address": "511 Dirksen Senate Office Building Washington DC 20510", + "contact_form": "http://www.thune.senate.gov/public/index.cfm/contact", + "fax": "202-228-5429", + "office": "511 Dirksen Senate Office Building", + "rss_url": "http://www.thune.senate.gov/public/index.cfm/rss/feed" + }, + "leadership_title": "Senate Minority Whip", + "party": "Republican", + "person": { + "bioguideid": "T000250", + "birthday": "1961-01-07", + "cspanid": 45552, + "firstname": "John", + "gender": "male", + "gender_label": "Male", + "lastname": "Thune", + "link": "https://www.govtrack.us/congress/members/john_thune/400546", + "middlename": "", + "name": "Sen. John Thune [R-SD]", + "namemod": "", + "nickname": "", + "osid": "N00004572", + "pvsid": "398", + "sortname": "Thune, John (Sen.) [R-SD]", + "twitterid": "SenJohnThune", + "youtubeid": "johnthune" + }, + "phone": "202-224-2321", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class3", + "senator_class_label": "Class 3", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2017-01-03", + "state": "SD", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.thune.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 115, + 116, + 117 + ], + "current": true, + "description": "Senior Senator for Colorado", + "district": null, + "enddate": "2023-01-03", + "extra": { + "address": "261 Russell Senate Office Building Washington DC 20510", + "contact_form": "https://www.bennet.senate.gov/public/index.cfm/contact", + "fax": "202-228-5097", + "office": "261 Russell Senate Office Building", + "rss_url": "http://www.bennet.senate.gov/rss/feeds/?type=news" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "B001267", + "birthday": "1964-11-28", + "cspanid": 1031622, + "firstname": "Michael", + "gender": "male", + "gender_label": "Male", + "lastname": "Bennet", + "link": "https://www.govtrack.us/congress/members/michael_bennet/412330", + "middlename": "F.", + "name": "Sen. Michael Bennet [D-CO]", + "namemod": "", + "nickname": "", + "osid": "N00030608", + "pvsid": "110942", + "sortname": "Bennet, Michael (Sen.) [D-CO]", + "twitterid": "SenatorBennet", + "youtubeid": "SenatorBennet" + }, + "phone": "202-224-5852", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class3", + "senator_class_label": "Class 3", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2017-01-03", + "state": "CO", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.bennet.senate.gov/public" + }, + { + "caucus": null, + "congress_numbers": [ + 115, + 116, + 117 + ], + "current": true, + "description": "Senior Senator for Indiana", + "district": null, + "enddate": "2023-01-03", + "extra": { + "address": "185 Dirksen Senate Office Building Washington DC 20510", + "contact_form": "https://www.young.senate.gov/contact", + "fax": "202-226-6866", + "office": "185 Dirksen Senate Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "Y000064", + "birthday": "1972-08-24", + "cspanid": 1033743, + "firstname": "Todd", + "gender": "male", + "gender_label": "Male", + "lastname": "Young", + "link": "https://www.govtrack.us/congress/members/todd_young/412428", + "middlename": "C.", + "name": "Sen. Todd Young [R-IN]", + "namemod": "", + "nickname": "", + "osid": "N00030670", + "pvsid": "120345", + "sortname": "Young, Todd (Sen.) [R-IN]", + "twitterid": "SenToddYoung", + "youtubeid": "RepToddYoung" + }, + "phone": "202-224-5623", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class3", + "senator_class_label": "Class 3", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2017-01-03", + "state": "IN", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.young.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 115, + 116, + 117 + ], + "current": true, + "description": "Junior Senator for Oklahoma", + "district": null, + "enddate": "2023-01-03", + "extra": { + "address": "316 Hart Senate Office Building Washington DC 20510", + "contact_form": "http://www.lankford.senate.gov/contact/email", + "office": "316 Hart Senate Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "L000575", + "birthday": "1968-03-04", + "cspanid": 1033847, + "firstname": "James", + "gender": "male", + "gender_label": "Male", + "lastname": "Lankford", + "link": "https://www.govtrack.us/congress/members/james_lankford/412464", + "middlename": "", + "name": "Sen. James Lankford [R-OK]", + "namemod": "", + "nickname": "", + "osid": "N00031129", + "pvsid": "124938", + "sortname": "Lankford, James (Sen.) [R-OK]", + "twitterid": "SenatorLankford", + "youtubeid": "SenatorLankford" + }, + "phone": "202-224-5754", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class3", + "senator_class_label": "Class 3", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2017-01-03", + "state": "OK", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.lankford.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 115, + 116, + 117 + ], + "current": true, + "description": "Junior Senator for South Carolina", + "district": null, + "enddate": "2023-01-03", + "extra": { + "address": "104 Hart Senate Office Building Washington DC 20510", + "contact_form": "https://www.scott.senate.gov/contact/email-me", + "fax": "202-225-3407", + "office": "104 Hart Senate Office Building", + "rss_url": "http://www.scott.senate.gov/rss.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "S001184", + "birthday": "1965-09-19", + "cspanid": 623506, + "firstname": "Tim", + "gender": "male", + "gender_label": "Male", + "lastname": "Scott", + "link": "https://www.govtrack.us/congress/members/tim_scott/412471", + "middlename": "", + "name": "Sen. Tim Scott [R-SC]", + "namemod": "", + "nickname": "", + "osid": "N00031782", + "pvsid": "11940", + "sortname": "Scott, Tim (Sen.) [R-SC]", + "twitterid": "SenatorTimScott", + "youtubeid": "SenatorTimScott" + }, + "phone": "202-224-6121", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class3", + "senator_class_label": "Class 3", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2017-01-03", + "state": "SC", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.scott.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 115, + 116, + 117 + ], + "current": true, + "description": "Senior Senator for Connecticut", + "district": null, + "enddate": "2023-01-03", + "extra": { + "address": "706 Hart Senate Office Building Washington DC 20510", + "contact_form": "https://www.blumenthal.senate.gov/contact/", + "fax": "202-224-9673", + "office": "706 Hart Senate Office Building", + "rss_url": "http://www.blumenthal.senate.gov/rss/feeds/?type=all" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "B001277", + "birthday": "1946-02-13", + "cspanid": 21799, + "firstname": "Richard", + "gender": "male", + "gender_label": "Male", + "lastname": "Blumenthal", + "link": "https://www.govtrack.us/congress/members/richard_blumenthal/412490", + "middlename": "", + "name": "Sen. Richard Blumenthal [D-CT]", + "namemod": "", + "nickname": "", + "osid": "N00031685", + "pvsid": "1568", + "sortname": "Blumenthal, Richard (Sen.) [D-CT]", + "twitterid": "SenBlumenthal", + "youtubeid": "SenatorBlumenthal" + }, + "phone": "202-224-2823", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class3", + "senator_class_label": "Class 3", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2017-01-03", + "state": "CT", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.blumenthal.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 115, + 116, + 117 + ], + "current": true, + "description": "Senior Senator for Florida", + "district": null, + "enddate": "2023-01-03", + "extra": { + "address": "284 Russell Senate Office Building Washington DC 20510", + "contact_form": "http://www.rubio.senate.gov/public/index.cfm/contact", + "fax": "202-228-0285", + "office": "284 Russell Senate Office Building", + "rss_url": "http://www.rubio.senate.gov/public/?a=rss.feed" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "R000595", + "birthday": "1971-05-28", + "cspanid": 87599, + "firstname": "Marco", + "gender": "male", + "gender_label": "Male", + "lastname": "Rubio", + "link": "https://www.govtrack.us/congress/members/marco_rubio/412491", + "middlename": "", + "name": "Sen. Marco Rubio [R-FL]", + "namemod": "", + "nickname": "", + "osid": "N00030612", + "pvsid": "1601", + "sortname": "Rubio, Marco (Sen.) [R-FL]", + "twitterid": "SenRubioPress", + "youtubeid": "SenatorMarcoRubio" + }, + "phone": "202-224-3041", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class3", + "senator_class_label": "Class 3", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2017-01-03", + "state": "FL", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.rubio.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 115, + 116, + 117 + ], + "current": true, + "description": "Junior Senator for Kentucky", + "district": null, + "enddate": "2023-01-03", + "extra": { + "address": "167 Russell Senate Office Building Washington DC 20510", + "contact_form": "https://www.paul.senate.gov/connect/email-rand", + "fax": "202-228-1373", + "office": "167 Russell Senate Office Building", + "rss_url": "http://paul.senate.gov/rss/?p=news" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "P000603", + "birthday": "1963-01-07", + "cspanid": 9265241, + "firstname": "Rand", + "gender": "male", + "gender_label": "Male", + "lastname": "Paul", + "link": "https://www.govtrack.us/congress/members/rand_paul/412492", + "middlename": "", + "name": "Sen. Rand Paul [R-KY]", + "namemod": "", + "nickname": "", + "osid": "N00030836", + "pvsid": "117285", + "sortname": "Paul, Rand (Sen.) [R-KY]", + "twitterid": "RandPaul", + "youtubeid": "SenatorRandPaul" + }, + "phone": "202-224-4343", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class3", + "senator_class_label": "Class 3", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2017-01-03", + "state": "KY", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.paul.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 115, + 116, + 117 + ], + "current": true, + "description": "Senior Senator for North Dakota", + "district": null, + "enddate": "2023-01-03", + "extra": { + "address": "338 Russell Senate Office Building Washington DC 20510", + "contact_form": "http://www.hoeven.senate.gov/public/index.cfm/email-the-senator", + "fax": "202-224-7999", + "office": "338 Russell Senate Office Building", + "rss_url": "http://www.hoeven.senate.gov/public/index.cfm/rss/feed" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "H001061", + "birthday": "1957-03-13", + "cspanid": 85233, + "firstname": "John", + "gender": "male", + "gender_label": "Male", + "lastname": "Hoeven", + "link": "https://www.govtrack.us/congress/members/john_hoeven/412494", + "middlename": "", + "name": "Sen. John Hoeven [R-ND]", + "namemod": "", + "nickname": "", + "osid": "N00031688", + "pvsid": "41788", + "sortname": "Hoeven, John (Sen.) [R-ND]", + "twitterid": "SenJohnHoeven", + "youtubeid": "senatorjohnhoevennd" + }, + "phone": "202-224-2551", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class3", + "senator_class_label": "Class 3", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2017-01-03", + "state": "ND", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.hoeven.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 115, + 116, + 117 + ], + "current": true, + "description": "Senior Senator for Utah", + "district": null, + "enddate": "2023-01-03", + "extra": { + "address": "361A Russell Senate Office Building Washington DC 20510", + "contact_form": "https://www.lee.senate.gov/public/index.cfm/contact", + "office": "361a Russell Senate Office Building", + "rss_url": "http://www.lee.senate.gov/public/index.cfm/rss/feed" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "L000577", + "birthday": "1971-06-04", + "cspanid": 9267977, + "firstname": "Mike", + "gender": "male", + "gender_label": "Male", + "lastname": "Lee", + "link": "https://www.govtrack.us/congress/members/mike_lee/412495", + "middlename": "", + "name": "Sen. Mike Lee [R-UT]", + "namemod": "", + "nickname": "", + "osid": "N00031696", + "pvsid": "66395", + "sortname": "Lee, Mike (Sen.) [R-UT]", + "twitterid": "SenMikeLee", + "youtubeid": "senatormikelee" + }, + "phone": "202-224-5444", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class3", + "senator_class_label": "Class 3", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2017-01-03", + "state": "UT", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.lee.senate.gov/public" + }, + { + "caucus": null, + "congress_numbers": [ + 115, + 116, + 117 + ], + "current": true, + "description": "Senior Senator for Wisconsin", + "district": null, + "enddate": "2023-01-03", + "extra": { + "address": "328 Hart Senate Office Building Washington DC 20510", + "contact_form": "https://www.ronjohnson.senate.gov/public/index.cfm/email-the-senator", + "fax": "920-230-7262", + "office": "328 Hart Senate Office Building", + "rss_url": "http://www.ronjohnson.senate.gov/public/index.cfm/rss/feed" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "J000293", + "birthday": "1955-04-08", + "cspanid": 62835, + "firstname": "Ron", + "gender": "male", + "gender_label": "Male", + "lastname": "Johnson", + "link": "https://www.govtrack.us/congress/members/ron_johnson/412496", + "middlename": "", + "name": "Sen. Ron Johnson [R-WI]", + "namemod": "", + "nickname": "", + "osid": "N00032546", + "pvsid": "126217", + "sortname": "Johnson, Ron (Sen.) [R-WI]", + "twitterid": "SenRonJohnson", + "youtubeid": "SenatorRonJohnson" + }, + "phone": "202-224-5323", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class3", + "senator_class_label": "Class 3", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2017-01-03", + "state": "WI", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.ronjohnson.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 115, + 116, + 117 + ], + "current": true, + "description": "Senior Senator for Hawaii", + "district": null, + "enddate": "2023-01-03", + "extra": { + "address": "722 Hart Senate Office Building Washington DC 20510", + "contact_form": "https://www.schatz.senate.gov/contact", + "fax": "202-228-1153", + "office": "722 Hart Senate Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "S001194", + "birthday": "1972-10-20", + "cspanid": 87784, + "firstname": "Brian", + "gender": "male", + "gender_label": "Male", + "lastname": "Schatz", + "link": "https://www.govtrack.us/congress/members/brian_schatz/412507", + "middlename": "Emanuel", + "name": "Sen. Brian Schatz [D-HI]", + "namemod": "", + "nickname": "", + "osid": "N00028138", + "pvsid": "17852", + "sortname": "Schatz, Brian (Sen.) [D-HI]", + "twitterid": "SenBrianSchatz", + "youtubeid": "senbrianschatz" + }, + "phone": "202-224-3934", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class3", + "senator_class_label": "Class 3", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2017-01-03", + "state": "HI", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.schatz.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 115, + 116, + 117 + ], + "current": true, + "description": "Junior Senator for Illinois", + "district": null, + "enddate": "2023-01-03", + "extra": { + "address": "524 Hart Senate Office Building Washington DC 20510", + "contact_form": "https://www.duckworth.senate.gov/content/contact-senator", + "office": "524 Hart Senate Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "D000622", + "birthday": "1968-03-12", + "cspanid": 94484, + "firstname": "Tammy", + "gender": "female", + "gender_label": "Female", + "lastname": "Duckworth", + "link": "https://www.govtrack.us/congress/members/tammy_duckworth/412533", + "middlename": "", + "name": "Sen. Tammy Duckworth [D-IL]", + "namemod": "", + "nickname": "", + "osid": "N00027860", + "pvsid": "57442", + "sortname": "Duckworth, Tammy (Sen.) [D-IL]", + "twitterid": "SenDuckworth", + "youtubeid": "repduckworth" + }, + "phone": "202-224-2854", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class3", + "senator_class_label": "Class 3", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2017-01-03", + "state": "IL", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.duckworth.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 115, + 116, + 117 + ], + "current": true, + "description": "Junior Senator for Louisiana", + "district": null, + "enddate": "2023-01-03", + "extra": { + "address": "416 Russell Senate Office Building Washington DC 20510", + "contact_form": "https://www.kennedy.senate.gov/public/email-me", + "office": "416 Russell Senate Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "K000393", + "birthday": "1951-11-21", + "cspanid": 1011723, + "firstname": "John", + "gender": "male", + "gender_label": "Male", + "lastname": "Kennedy", + "link": "https://www.govtrack.us/congress/members/john_kennedy/412679", + "middlename": "Neely", + "name": "Sen. John Kennedy [R-LA]", + "namemod": "", + "nickname": "", + "osid": "N00026823", + "pvsid": "35496", + "sortname": "Kennedy, John (Sen.) [R-LA]", + "twitterid": "SenJohnKennedy", + "youtubeid": null + }, + "phone": "202-224-4623", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class3", + "senator_class_label": "Class 3", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2017-01-03", + "state": "LA", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.kennedy.senate.gov/public" + }, + { + "caucus": null, + "congress_numbers": [ + 115, + 116, + 117 + ], + "current": true, + "description": "Junior Senator for New Hampshire", + "district": null, + "enddate": "2023-01-03", + "extra": { + "address": "324 Hart Senate Office Building Washington DC 20510", + "contact_form": "https://www.hassan.senate.gov/content/contact-senator", + "office": "324 Hart Senate Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "H001076", + "birthday": "1958-02-27", + "cspanid": 67481, + "firstname": "Margaret", + "gender": "female", + "gender_label": "Female", + "lastname": "Hassan", + "link": "https://www.govtrack.us/congress/members/margaret_hassan/412680", + "middlename": "Wood", + "name": "Sen. Margaret “Maggie” Hassan [D-NH]", + "namemod": "", + "nickname": "Maggie", + "osid": "N00038397", + "pvsid": "42552", + "sortname": "Hassan, Margaret “Maggie” (Sen.) [D-NH]", + "twitterid": "Senatorhassan", + "youtubeid": null + }, + "phone": "202-224-3324", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class3", + "senator_class_label": "Class 3", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2017-01-03", + "state": "NH", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.hassan.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 115, + 116, + 117 + ], + "current": true, + "description": "Senior Senator for Nevada", + "district": null, + "enddate": "2023-01-03", + "extra": { + "address": "516 Hart Senate Office Building Washington DC 20510", + "contact_form": "https://www.cortezmasto.senate.gov/contact", + "office": "516 Hart Senate Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "C001113", + "birthday": "1964-03-29", + "cspanid": 105698, + "firstname": "Catherine", + "gender": "female", + "gender_label": "Female", + "lastname": "Cortez Masto", + "link": "https://www.govtrack.us/congress/members/catherine_cortez_masto/412681", + "middlename": "", + "name": "Sen. Catherine Cortez Masto [D-NV]", + "namemod": "", + "nickname": "", + "osid": "N00037161", + "pvsid": "69579", + "sortname": "Cortez Masto, Catherine (Sen.) [D-NV]", + "twitterid": "sencortezmasto", + "youtubeid": null + }, + "phone": "202-224-3542", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class3", + "senator_class_label": "Class 3", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2017-01-03", + "state": "NV", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.cortezmasto.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 116, + 117, + 118 + ], + "current": true, + "description": "Junior Senator for Washington", + "district": null, + "enddate": "2025-01-03", + "extra": { + "address": "511 Hart Senate Office Building Washington DC 20510", + "contact_form": "http://www.cantwell.senate.gov/public/index.cfm/email-maria", + "office": "511 Hart Senate Office Building", + "rss_url": "http://www.cantwell.senate.gov/public/index.cfm/rss/feed" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "C000127", + "birthday": "1958-10-13", + "cspanid": 26137, + "firstname": "Maria", + "gender": "female", + "gender_label": "Female", + "lastname": "Cantwell", + "link": "https://www.govtrack.us/congress/members/maria_cantwell/300018", + "middlename": "", + "name": "Sen. Maria Cantwell [D-WA]", + "namemod": "", + "nickname": "", + "osid": "N00007836", + "pvsid": "27122", + "sortname": "Cantwell, Maria (Sen.) [D-WA]", + "twitterid": "SenatorCantwell", + "youtubeid": "SenatorCantwell" + }, + "phone": "202-224-3441", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class1", + "senator_class_label": "Class 1", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2019-01-03", + "state": "WA", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.cantwell.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 116, + 117, + 118 + ], + "current": true, + "description": "Senior Senator for Delaware", + "district": null, + "enddate": "2025-01-03", + "extra": { + "address": "513 Hart Senate Office Building Washington DC 20510", + "contact_form": "http://www.carper.senate.gov/public/index.cfm/email-senator-carper", + "office": "513 Hart Senate Office Building", + "rss_url": "http://www.carper.senate.gov/public/index.cfm/rss/feed" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "C000174", + "birthday": "1947-01-23", + "cspanid": 663, + "firstname": "Thomas", + "gender": "male", + "gender_label": "Male", + "lastname": "Carper", + "link": "https://www.govtrack.us/congress/members/thomas_carper/300019", + "middlename": "Richard", + "name": "Sen. Thomas Carper [D-DE]", + "namemod": "", + "nickname": "", + "osid": "N00012508", + "pvsid": "22421", + "sortname": "Carper, Thomas (Sen.) [D-DE]", + "twitterid": "SenatorCarper", + "youtubeid": "senatorcarper" + }, + "phone": "202-224-2441", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class1", + "senator_class_label": "Class 1", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2019-01-03", + "state": "DE", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.carper.senate.gov/public" + }, + { + "caucus": null, + "congress_numbers": [ + 116, + 117, + 118 + ], + "current": true, + "description": "Senior Senator for California", + "district": null, + "enddate": "2025-01-03", + "extra": { + "address": "331 Hart Senate Office Building Washington DC 20510", + "contact_form": "https://www.feinstein.senate.gov/public/index.cfm/e-mail-me", + "office": "331 Hart Senate Office Building", + "rss_url": "http://www.feinstein.senate.gov/public/?a=rss.feed" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "F000062", + "birthday": "1933-06-22", + "cspanid": 13061, + "firstname": "Dianne", + "gender": "female", + "gender_label": "Female", + "lastname": "Feinstein", + "link": "https://www.govtrack.us/congress/members/dianne_feinstein/300043", + "middlename": "", + "name": "Sen. Dianne Feinstein [D-CA]", + "namemod": "", + "nickname": "", + "osid": "N00007364", + "pvsid": "53273", + "sortname": "Feinstein, Dianne (Sen.) [D-CA]", + "twitterid": "SenFeinstein", + "youtubeid": "SenatorFeinstein" + }, + "phone": "202-224-3841", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class1", + "senator_class_label": "Class 1", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2019-01-03", + "state": "CA", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.feinstein.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 116, + 117, + 118 + ], + "current": true, + "description": "Senior Senator for Michigan", + "district": null, + "enddate": "2025-01-03", + "extra": { + "address": "731 Hart Senate Office Building Washington DC 20510", + "contact_form": "https://www.stabenow.senate.gov/contact", + "office": "731 Hart Senate Office Building", + "rss_url": "http://stabenow.senate.gov/rss/?p=news" + }, + "leadership_title": "Senate Democratic Policy & Communications Committee Chair", + "party": "Democrat", + "person": { + "bioguideid": "S000770", + "birthday": "1950-04-29", + "cspanid": 45451, + "firstname": "Debbie", + "gender": "female", + "gender_label": "Female", + "lastname": "Stabenow", + "link": "https://www.govtrack.us/congress/members/debbie_stabenow/300093", + "middlename": "Ann", + "name": "Sen. Debbie Stabenow [D-MI]", + "namemod": "", + "nickname": "", + "osid": "N00004118", + "pvsid": "515", + "sortname": "Stabenow, Debbie (Sen.) [D-MI]", + "twitterid": "SenStabenow", + "youtubeid": "senatorstabenow" + }, + "phone": "202-224-4822", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class1", + "senator_class_label": "Class 1", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2019-01-03", + "state": "MI", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.stabenow.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 116, + 117, + 118 + ], + "current": true, + "description": "Junior Senator for Wisconsin", + "district": null, + "enddate": "2025-01-03", + "extra": { + "address": "709 Hart Senate Office Building Washington DC 20510", + "contact_form": "https://www.baldwin.senate.gov/feedback", + "office": "709 Hart Senate Office Building", + "rss_url": "http://www.baldwin.senate.gov/rss/feeds/?type=all" + }, + "leadership_title": "Senate Democratic Caucus Secretary", + "party": "Democrat", + "person": { + "bioguideid": "B001230", + "birthday": "1962-02-11", + "cspanid": 57884, + "firstname": "Tammy", + "gender": "female", + "gender_label": "Female", + "lastname": "Baldwin", + "link": "https://www.govtrack.us/congress/members/tammy_baldwin/400013", + "middlename": "", + "name": "Sen. Tammy Baldwin [D-WI]", + "namemod": "", + "nickname": "", + "osid": "N00004367", + "pvsid": "3470", + "sortname": "Baldwin, Tammy (Sen.) [D-WI]", + "twitterid": "SenatorBaldwin", + "youtubeid": "witammybaldwin" + }, + "phone": "202-224-5653", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class1", + "senator_class_label": "Class 1", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2019-01-03", + "state": "WI", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.baldwin.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 116, + 117, + 118 + ], + "current": true, + "description": "Senior Senator for Tennessee", + "district": null, + "enddate": "2025-01-03", + "extra": { + "address": "357 Dirksen Senate Office Building Washington DC 20510", + "contact_form": "https://www.blackburn.senate.gov/email-me", + "office": "357 Dirksen Senate Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "B001243", + "birthday": "1952-06-06", + "cspanid": 31226, + "firstname": "Marsha", + "gender": "female", + "gender_label": "Female", + "lastname": "Blackburn", + "link": "https://www.govtrack.us/congress/members/marsha_blackburn/400032", + "middlename": "W.", + "name": "Sen. Marsha Blackburn [R-TN]", + "namemod": "", + "nickname": "", + "osid": "N00003105", + "pvsid": "25186", + "sortname": "Blackburn, Marsha (Sen.) [R-TN]", + "twitterid": "MarshaBlackburn", + "youtubeid": "RepMarshaBlackburn" + }, + "phone": "202-224-3344", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class1", + "senator_class_label": "Class 1", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2019-01-03", + "state": "TN", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.blackburn.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 116, + 117, + 118 + ], + "current": true, + "description": "Senior Senator for Ohio", + "district": null, + "enddate": "2025-01-03", + "extra": { + "address": "503 Hart Senate Office Building Washington DC 20510", + "contact_form": "http://www.brown.senate.gov/contact/", + "office": "503 Hart Senate Office Building", + "rss_url": "http://www.brown.senate.gov/rss/feeds/?type=all&" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "B000944", + "birthday": "1952-11-09", + "cspanid": 5051, + "firstname": "Sherrod", + "gender": "male", + "gender_label": "Male", + "lastname": "Brown", + "link": "https://www.govtrack.us/congress/members/sherrod_brown/400050", + "middlename": "", + "name": "Sen. Sherrod Brown [D-OH]", + "namemod": "", + "nickname": "", + "osid": "N00003535", + "pvsid": "27018", + "sortname": "Brown, Sherrod (Sen.) [D-OH]", + "twitterid": "SenSherrodBrown", + "youtubeid": "SherrodBrownOhio" + }, + "phone": "202-224-2315", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class1", + "senator_class_label": "Class 1", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2019-01-03", + "state": "OH", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.brown.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 116, + 117, + 118 + ], + "current": true, + "description": "Senior Senator for Maryland", + "district": null, + "enddate": "2025-01-03", + "extra": { + "address": "509 Hart Senate Office Building Washington DC 20510", + "contact_form": "http://www.cardin.senate.gov/contact/", + "office": "509 Hart Senate Office Building", + "rss_url": "http://www.cardin.senate.gov/rss/feeds/?type=all" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "C000141", + "birthday": "1943-10-05", + "cspanid": 4004, + "firstname": "Benjamin", + "gender": "male", + "gender_label": "Male", + "lastname": "Cardin", + "link": "https://www.govtrack.us/congress/members/benjamin_cardin/400064", + "middlename": "L.", + "name": "Sen. Benjamin Cardin [D-MD]", + "namemod": "", + "nickname": "", + "osid": "N00001955", + "pvsid": "26888", + "sortname": "Cardin, Benjamin (Sen.) [D-MD]", + "twitterid": "SenatorCardin", + "youtubeid": "senatorcardin" + }, + "phone": "202-224-4524", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class1", + "senator_class_label": "Class 1", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2019-01-03", + "state": "MD", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.cardin.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 116, + 117, + 118 + ], + "current": true, + "description": "Senior Senator for New Jersey", + "district": null, + "enddate": "2025-01-03", + "extra": { + "address": "528 Hart Senate Office Building Washington DC 20510", + "contact_form": "https://www.menendez.senate.gov/contact", + "office": "528 Hart Senate Office Building", + "rss_url": "http://www.menendez.senate.gov/rss/feeds/index.cfm?type=news" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "M000639", + "birthday": "1954-01-01", + "cspanid": 29608, + "firstname": "Robert", + "gender": "male", + "gender_label": "Male", + "lastname": "Menendez", + "link": "https://www.govtrack.us/congress/members/robert_menendez/400272", + "middlename": "", + "name": "Sen. Robert “Bob” Menendez [D-NJ]", + "namemod": "", + "nickname": "Bob", + "osid": "N00000699", + "pvsid": "26961", + "sortname": "Menendez, Robert “Bob” (Sen.) [D-NJ]", + "twitterid": "SenatorMenendez", + "youtubeid": "SenatorMenendezNJ" + }, + "phone": "202-224-4744", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class1", + "senator_class_label": "Class 1", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2019-01-03", + "state": "NJ", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.menendez.senate.gov" + }, + { + "caucus": "Democrat", + "congress_numbers": [ + 116, + 117, + 118 + ], + "current": true, + "description": "Junior Senator for Vermont", + "district": null, + "enddate": "2025-01-03", + "extra": { + "address": "332 Dirksen Senate Office Building Washington DC 20510", + "contact_form": "http://www.sanders.senate.gov/contact/", + "office": "332 Dirksen Senate Office Building", + "rss_url": "http://www.sanders.senate.gov/rss/" + }, + "leadership_title": null, + "party": "Independent", + "person": { + "bioguideid": "S000033", + "birthday": "1941-09-08", + "cspanid": 994, + "firstname": "Bernard", + "gender": "male", + "gender_label": "Male", + "lastname": "Sanders", + "link": "https://www.govtrack.us/congress/members/bernard_sanders/400357", + "middlename": "", + "name": "Sen. Bernard “Bernie” Sanders [I-VT]", + "namemod": "", + "nickname": "Bernie", + "osid": "N00000528", + "pvsid": "27110", + "sortname": "Sanders, Bernard “Bernie” (Sen.) [I-VT]", + "twitterid": "SenSanders", + "youtubeid": "senatorsanders" + }, + "phone": "202-224-5141", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class1", + "senator_class_label": "Class 1", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2019-01-03", + "state": "VT", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.sanders.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 116, + 117, + 118 + ], + "current": true, + "description": "Senior Senator for Mississippi", + "district": null, + "enddate": "2025-01-03", + "extra": { + "address": "555 Dirksen Senate Office Building Washington DC 20510", + "contact_form": "https://www.wicker.senate.gov/public/index.cfm/contact", + "office": "555 Dirksen Senate Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "W000437", + "birthday": "1951-07-05", + "cspanid": 18203, + "firstname": "Roger", + "gender": "male", + "gender_label": "Male", + "lastname": "Wicker", + "link": "https://www.govtrack.us/congress/members/roger_wicker/400432", + "middlename": "F.", + "name": "Sen. Roger Wicker [R-MS]", + "namemod": "", + "nickname": "", + "osid": "N00003280", + "pvsid": "21926", + "sortname": "Wicker, Roger (Sen.) [R-MS]", + "twitterid": "SenatorWicker", + "youtubeid": "SenatorWicker" + }, + "phone": "202-224-6253", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class1", + "senator_class_label": "Class 1", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2019-01-03", + "state": "MS", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.wicker.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 116, + 117, + 118 + ], + "current": true, + "description": "Junior Senator for Connecticut", + "district": null, + "enddate": "2025-01-03", + "extra": { + "address": "136 Hart Senate Office Building Washington DC 20510", + "contact_form": "http://www.murphy.senate.gov/contact", + "office": "136 Hart Senate Office Building", + "rss_url": "http://www.theday.com/article/20121216/nws12/312169935/1069/rss" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "M001169", + "birthday": "1973-08-03", + "cspanid": 1021270, + "firstname": "Christopher", + "gender": "male", + "gender_label": "Male", + "lastname": "Murphy", + "link": "https://www.govtrack.us/congress/members/christopher_murphy/412194", + "middlename": "S.", + "name": "Sen. Christopher Murphy [D-CT]", + "namemod": "", + "nickname": "", + "osid": "N00027566", + "pvsid": "17189", + "sortname": "Murphy, Christopher (Sen.) [D-CT]", + "twitterid": "senmurphyoffice", + "youtubeid": "senchrismurphy" + }, + "phone": "202-224-4041", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class1", + "senator_class_label": "Class 1", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2019-01-03", + "state": "CT", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.murphy.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 116, + 117, + 118 + ], + "current": true, + "description": "Junior Senator for Hawaii", + "district": null, + "enddate": "2025-01-03", + "extra": { + "address": "109 Hart Senate Office Building Washington DC 20510", + "contact_form": "https://www.hirono.senate.gov/contact", + "office": "109 Hart Senate Office Building", + "rss_url": "http://www.hirono.senate.gov/rss/feeds/?type=all" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "H001042", + "birthday": "1947-11-03", + "cspanid": 91216, + "firstname": "Mazie", + "gender": "female", + "gender_label": "Female", + "lastname": "Hirono", + "link": "https://www.govtrack.us/congress/members/mazie_hirono/412200", + "middlename": "K.", + "name": "Sen. Mazie Hirono [D-HI]", + "namemod": "", + "nickname": "", + "osid": "N00028139", + "pvsid": "1677", + "sortname": "Hirono, Mazie (Sen.) [D-HI]", + "twitterid": "MazieHirono", + "youtubeid": "CongresswomanHirono" + }, + "phone": "202-224-6361", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class1", + "senator_class_label": "Class 1", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2019-01-03", + "state": "HI", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.hirono.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 116, + 117, + 118 + ], + "current": true, + "description": "Junior Senator for New York", + "district": null, + "enddate": "2025-01-03", + "extra": { + "address": "478 Russell Senate Office Building Washington DC 20510", + "contact_form": "https://www.gillibrand.senate.gov/contact/email-me", + "office": "478 Russell Senate Office Building", + "rss_url": "http://www.gillibrand.senate.gov/rss/" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "G000555", + "birthday": "1966-12-09", + "cspanid": 1022862, + "firstname": "Kirsten", + "gender": "female", + "gender_label": "Female", + "lastname": "Gillibrand", + "link": "https://www.govtrack.us/congress/members/kirsten_gillibrand/412223", + "middlename": "E.", + "name": "Sen. Kirsten Gillibrand [D-NY]", + "namemod": "", + "nickname": "", + "osid": "N00027658", + "pvsid": "65147", + "sortname": "Gillibrand, Kirsten (Sen.) [D-NY]", + "twitterid": "GillibrandNY", + "youtubeid": "KirstenEGillibrand" + }, + "phone": "202-224-4451", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class1", + "senator_class_label": "Class 1", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2019-01-03", + "state": "NY", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.gillibrand.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 116, + 117, + 118 + ], + "current": true, + "description": "Senior Senator for Minnesota", + "district": null, + "enddate": "2025-01-03", + "extra": { + "address": "425 Dirksen Senate Office Building Washington DC 20510", + "contact_form": "http://www.klobuchar.senate.gov/public/index.cfm/contact", + "office": "425 Dirksen Senate Office Building" + }, + "leadership_title": "Senate Democratic Steering Committee Chair", + "party": "Democrat", + "person": { + "bioguideid": "K000367", + "birthday": "1960-05-25", + "cspanid": 83701, + "firstname": "Amy", + "gender": "female", + "gender_label": "Female", + "lastname": "Klobuchar", + "link": "https://www.govtrack.us/congress/members/amy_klobuchar/412242", + "middlename": "Jean", + "name": "Sen. Amy Klobuchar [D-MN]", + "namemod": "", + "nickname": "", + "osid": "N00027500", + "pvsid": "65092", + "sortname": "Klobuchar, Amy (Sen.) [D-MN]", + "twitterid": "SenAmyKlobuchar", + "youtubeid": "senatorklobuchar" + }, + "phone": "202-224-3244", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class1", + "senator_class_label": "Class 1", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2019-01-03", + "state": "MN", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.klobuchar.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 116, + 117, + 118 + ], + "current": true, + "description": "Senior Senator for Montana", + "district": null, + "enddate": "2025-01-03", + "extra": { + "address": "311 Hart Senate Office Building Washington DC 20510", + "contact_form": "https://www.tester.senate.gov/?p=email_senator", + "office": "311 Hart Senate Office Building", + "rss_url": "http://www.tester.senate.gov/rss/?p=hot_topic" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "T000464", + "birthday": "1956-08-21", + "cspanid": 1020176, + "firstname": "Jon", + "gender": "male", + "gender_label": "Male", + "lastname": "Tester", + "link": "https://www.govtrack.us/congress/members/jon_tester/412244", + "middlename": "", + "name": "Sen. Jon Tester [D-MT]", + "namemod": "", + "nickname": "", + "osid": "N00027605", + "pvsid": "20928", + "sortname": "Tester, Jon (Sen.) [D-MT]", + "twitterid": "SenatorTester", + "youtubeid": "senatorjontester" + }, + "phone": "202-224-2644", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class1", + "senator_class_label": "Class 1", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2019-01-03", + "state": "MT", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.tester.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 116, + 117, + 118 + ], + "current": true, + "description": "Senior Senator for Pennsylvania", + "district": null, + "enddate": "2025-01-03", + "extra": { + "address": "393 Russell Senate Office Building Washington DC 20510", + "contact_form": "https://www.casey.senate.gov/contact/", + "office": "393 Russell Senate Office Building", + "rss_url": "http://www.casey.senate.gov/rss/feeds/?all" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "C001070", + "birthday": "1960-04-13", + "cspanid": 47036, + "firstname": "Robert", + "gender": "male", + "gender_label": "Male", + "lastname": "Casey", + "link": "https://www.govtrack.us/congress/members/robert_casey/412246", + "middlename": "P.", + "name": "Sen. Robert “Bob” Casey [D-PA]", + "namemod": "Jr.", + "nickname": "Bob", + "osid": "N00027503", + "pvsid": "2541", + "sortname": "Casey, Robert “Bob” (Sen.) [D-PA]", + "twitterid": "SenBobCasey", + "youtubeid": "SenatorBobCasey" + }, + "phone": "202-224-6324", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class1", + "senator_class_label": "Class 1", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2019-01-03", + "state": "PA", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.casey.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 116, + 117, + 118 + ], + "current": true, + "description": "Junior Senator for Rhode Island", + "district": null, + "enddate": "2025-01-03", + "extra": { + "address": "530 Hart Senate Office Building Washington DC 20510", + "contact_form": "https://www.whitehouse.senate.gov/contact/email-sheldon", + "office": "530 Hart Senate Office Building", + "rss_url": "http://www.whitehouse.senate.gov/rss/feeds/?type=all&cachebuster=1" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "W000802", + "birthday": "1955-10-20", + "cspanid": 92235, + "firstname": "Sheldon", + "gender": "male", + "gender_label": "Male", + "lastname": "Whitehouse", + "link": "https://www.govtrack.us/congress/members/sheldon_whitehouse/412247", + "middlename": "", + "name": "Sen. Sheldon Whitehouse [D-RI]", + "namemod": "", + "nickname": "", + "osid": "N00027533", + "pvsid": "2572", + "sortname": "Whitehouse, Sheldon (Sen.) [D-RI]", + "twitterid": "SenWhitehouse", + "youtubeid": "SenatorWhitehouse" + }, + "phone": "202-224-2921", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class1", + "senator_class_label": "Class 1", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2019-01-03", + "state": "RI", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.whitehouse.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 116, + 117, + 118 + ], + "current": true, + "description": "Senior Senator for Wyoming", + "district": null, + "enddate": "2025-01-03", + "extra": { + "address": "307 Dirksen Senate Office Building Washington DC 20510", + "contact_form": "https://www.barrasso.senate.gov/public/index.cfm/contact-form", + "office": "307 Dirksen Senate Office Building", + "rss_url": "http://www.barrasso.senate.gov/public/index.cfm?FuseAction=Rss.Feed" + }, + "leadership_title": "Senate Republican Conference Chair", + "party": "Republican", + "person": { + "bioguideid": "B001261", + "birthday": "1952-07-21", + "cspanid": 1024777, + "firstname": "John", + "gender": "male", + "gender_label": "Male", + "lastname": "Barrasso", + "link": "https://www.govtrack.us/congress/members/john_barrasso/412251", + "middlename": "A.", + "name": "Sen. John Barrasso [R-WY]", + "namemod": "", + "nickname": "", + "osid": "N00006236", + "pvsid": "52662", + "sortname": "Barrasso, John (Sen.) [R-WY]", + "twitterid": "SenJohnBarrasso", + "youtubeid": "barrassowyo" + }, + "phone": "202-224-6441", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class1", + "senator_class_label": "Class 1", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2019-01-03", + "state": "WY", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.barrasso.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 116, + 117, + 118 + ], + "current": true, + "description": "Senior Senator for New Mexico", + "district": null, + "enddate": "2025-01-03", + "extra": { + "address": "303 Hart Senate Office Building Washington DC 20510", + "contact_form": "http://www.heinrich.senate.gov/contact", + "office": "303 Hart Senate Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "H001046", + "birthday": "1971-10-17", + "cspanid": 1030686, + "firstname": "Martin", + "gender": "male", + "gender_label": "Male", + "lastname": "Heinrich", + "link": "https://www.govtrack.us/congress/members/martin_heinrich/412281", + "middlename": "", + "name": "Sen. Martin Heinrich [D-NM]", + "namemod": "", + "nickname": "", + "osid": "N00029835", + "pvsid": "74517", + "sortname": "Heinrich, Martin (Sen.) [D-NM]", + "twitterid": "MartinHeinrich", + "youtubeid": "SenMartinHeinrich" + }, + "phone": "202-224-5521", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class1", + "senator_class_label": "Class 1", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2019-01-03", + "state": "NM", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.heinrich.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 116, + 117, + 118 + ], + "current": true, + "description": "Senior Senator for West Virginia", + "district": null, + "enddate": "2025-01-03", + "extra": { + "address": "306 Hart Senate Office Building Washington DC 20510", + "contact_form": "http://www.manchin.senate.gov/public/index.cfm/contact-form", + "office": "306 Hart Senate Office Building", + "rss_url": "http://www.manchin.senate.gov/public/index.cfm/rss/feed" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "M001183", + "birthday": "1947-08-24", + "cspanid": 62864, + "firstname": "Joe", + "gender": "male", + "gender_label": "Male", + "lastname": "Manchin", + "link": "https://www.govtrack.us/congress/members/joe_manchin/412391", + "middlename": "", + "name": "Sen. Joe Manchin [D-WV]", + "namemod": "III", + "nickname": "", + "osid": "N00032838", + "pvsid": "7547", + "sortname": "Manchin, Joe (Sen.) [D-WV]", + "twitterid": "Sen_JoeManchin", + "youtubeid": "SenatorJoeManchin" + }, + "phone": "202-224-3954", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class1", + "senator_class_label": "Class 1", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2019-01-03", + "state": "WV", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.manchin.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 116, + 117, + 118 + ], + "current": true, + "description": "Senior Senator for Arizona", + "district": null, + "enddate": "2025-01-03", + "extra": { + "address": "317 Hart Senate Office Building Washington DC 20510", + "contact_form": "https://www.sinema.senate.gov/contact-kyrsten", + "office": "317 Hart Senate Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "S001191", + "birthday": "1976-07-12", + "cspanid": 68489, + "firstname": "Kyrsten", + "gender": "female", + "gender_label": "Female", + "lastname": "Sinema", + "link": "https://www.govtrack.us/congress/members/kyrsten_sinema/412509", + "middlename": "", + "name": "Sen. Kyrsten Sinema [D-AZ]", + "namemod": "", + "nickname": "", + "osid": "N00033983", + "pvsid": "28338", + "sortname": "Sinema, Kyrsten (Sen.) [D-AZ]", + "twitterid": "SenatorSinema", + "youtubeid": "repsinema" + }, + "phone": "202-224-4521", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class1", + "senator_class_label": "Class 1", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2019-01-03", + "state": "AZ", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.sinema.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 116, + 117, + 118 + ], + "current": true, + "description": "Senior Senator for Massachusetts", + "district": null, + "enddate": "2025-01-03", + "extra": { + "address": "309 Hart Senate Office Building Washington DC 20510", + "contact_form": "https://www.warren.senate.gov/?p=email_senator", + "office": "309 Hart Senate Office Building", + "rss_url": "http://www.warren.senate.gov/rss/?p=hot_topic" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "W000817", + "birthday": "1949-06-22", + "cspanid": 1023023, + "firstname": "Elizabeth", + "gender": "female", + "gender_label": "Female", + "lastname": "Warren", + "link": "https://www.govtrack.us/congress/members/elizabeth_warren/412542", + "middlename": "", + "name": "Sen. Elizabeth Warren [D-MA]", + "namemod": "", + "nickname": "", + "osid": "N00033492", + "pvsid": "141272", + "sortname": "Warren, Elizabeth (Sen.) [D-MA]", + "twitterid": "SenWarren", + "youtubeid": "senelizabethwarren" + }, + "phone": "202-224-4543", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class1", + "senator_class_label": "Class 1", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2019-01-03", + "state": "MA", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.warren.senate.gov" + }, + { + "caucus": "Democrat", + "congress_numbers": [ + 116, + 117, + 118 + ], + "current": true, + "description": "Junior Senator for Maine", + "district": null, + "enddate": "2025-01-03", + "extra": { + "address": "133 Hart Senate Office Building Washington DC 20510", + "contact_form": "https://www.king.senate.gov/contact", + "office": "133 Hart Senate Office Building", + "rss_url": "http://www.king.senate.gov/rss/feeds/?type=all" + }, + "leadership_title": null, + "party": "Independent", + "person": { + "bioguideid": "K000383", + "birthday": "1944-03-31", + "cspanid": 37413, + "firstname": "Angus", + "gender": "male", + "gender_label": "Male", + "lastname": "King", + "link": "https://www.govtrack.us/congress/members/angus_king/412545", + "middlename": "S.", + "name": "Sen. Angus King [I-ME]", + "namemod": "Jr.", + "nickname": "", + "osid": "N00034580", + "pvsid": "22381", + "sortname": "King, Angus (Sen.) [I-ME]", + "twitterid": "SenAngusKing", + "youtubeid": "SenatorAngusKing" + }, + "phone": "202-224-5344", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class1", + "senator_class_label": "Class 1", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2019-01-03", + "state": "ME", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.king.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 116, + 117, + 118 + ], + "current": true, + "description": "Junior Senator for North Dakota", + "district": null, + "enddate": "2025-01-03", + "extra": { + "address": "400 Russell Senate Office Building Washington DC 20510", + "contact_form": "https://www.cramer.senate.gov/contact/contact-kevin", + "office": "400 Russell Senate Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "C001096", + "birthday": "1961-01-21", + "cspanid": 7600, + "firstname": "Kevin", + "gender": "male", + "gender_label": "Male", + "lastname": "Cramer", + "link": "https://www.govtrack.us/congress/members/kevin_cramer/412555", + "middlename": "", + "name": "Sen. Kevin Cramer [R-ND]", + "namemod": "", + "nickname": "", + "osid": "N00004614", + "pvsid": "444", + "sortname": "Cramer, Kevin (Sen.) [R-ND]", + "twitterid": "SenKevinCramer", + "youtubeid": "kevincramer" + }, + "phone": "202-224-2043", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class1", + "senator_class_label": "Class 1", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2019-01-03", + "state": "ND", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.cramer.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 116, + 117, + 118 + ], + "current": true, + "description": "Senior Senator for Nebraska", + "district": null, + "enddate": "2025-01-03", + "extra": { + "address": "454 Russell Senate Office Building Washington DC 20510", + "contact_form": "http://www.fischer.senate.gov/public/index.cfm/contact", + "office": "454 Russell Senate Office Building", + "rss_url": "http://www.fischer.senate.gov/public/index.cfm/rss/feed" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "F000463", + "birthday": "1951-03-01", + "cspanid": 1034067, + "firstname": "Deb", + "gender": "female", + "gender_label": "Female", + "lastname": "Fischer", + "link": "https://www.govtrack.us/congress/members/deb_fischer/412556", + "middlename": "", + "name": "Sen. Deb Fischer [R-NE]", + "namemod": "", + "nickname": "", + "osid": "N00033443", + "pvsid": "41963", + "sortname": "Fischer, Deb (Sen.) [R-NE]", + "twitterid": "SenatorFischer", + "youtubeid": "senatordebfischer" + }, + "phone": "202-224-6551", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class1", + "senator_class_label": "Class 1", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2019-01-03", + "state": "NE", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.fischer.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 116, + 117, + 118 + ], + "current": true, + "description": "Junior Senator for Texas", + "district": null, + "enddate": "2025-01-03", + "extra": { + "address": "127A Russell Senate Office Building Washington DC 20510", + "contact_form": "https://www.cruz.senate.gov/?p=form&id=16", + "office": "127a Russell Senate Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "C001098", + "birthday": "1970-12-22", + "cspanid": 1019953, + "firstname": "Ted", + "gender": "male", + "gender_label": "Male", + "lastname": "Cruz", + "link": "https://www.govtrack.us/congress/members/ted_cruz/412573", + "middlename": "", + "name": "Sen. Ted Cruz [R-TX]", + "namemod": "", + "nickname": "", + "osid": "N00033085", + "pvsid": "135705", + "sortname": "Cruz, Ted (Sen.) [R-TX]", + "twitterid": "SenTedCruz", + "youtubeid": "sentedcruz" + }, + "phone": "202-224-5922", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class1", + "senator_class_label": "Class 1", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2019-01-03", + "state": "TX", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.cruz.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 116, + 117, + 118 + ], + "current": true, + "description": "Junior Senator for Virginia", + "district": null, + "enddate": "2025-01-03", + "extra": { + "address": "231 Russell Senate Office Building Washington DC 20510", + "contact_form": "https://www.kaine.senate.gov/contact", + "office": "231 Russell Senate Office Building", + "rss_url": "http://www.kaine.senate.gov/rss/feeds/?type=all" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "K000384", + "birthday": "1958-02-26", + "cspanid": 49219, + "firstname": "Timothy", + "gender": "male", + "gender_label": "Male", + "lastname": "Kaine", + "link": "https://www.govtrack.us/congress/members/timothy_kaine/412582", + "middlename": "", + "name": "Sen. Timothy “Tim” Kaine [D-VA]", + "namemod": "", + "nickname": "Tim", + "osid": "N00033177", + "pvsid": "50772", + "sortname": "Kaine, Timothy “Tim” (Sen.) [D-VA]", + "twitterid": null, + "youtubeid": "SenatorTimKaine" + }, + "phone": "202-224-4024", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class1", + "senator_class_label": "Class 1", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2019-01-03", + "state": "VA", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.kaine.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 116, + 117, + 118 + ], + "current": true, + "description": "Junior Senator for Nevada", + "district": null, + "enddate": "2025-01-03", + "extra": { + "address": "144 Russell Senate Office Building Washington DC 20510", + "contact_form": "https://www.rosen.senate.gov/contact_jacky", + "office": "144 Russell Senate Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "R000608", + "birthday": "1957-08-02", + "cspanid": 104738, + "firstname": "Jacky", + "gender": "female", + "gender_label": "Female", + "lastname": "Rosen", + "link": "https://www.govtrack.us/congress/members/jacky_rosen/412715", + "middlename": "", + "name": "Sen. Jacky Rosen [D-NV]", + "namemod": "", + "nickname": "", + "osid": "N00038734", + "pvsid": "169471", + "sortname": "Rosen, Jacky (Sen.) [D-NV]", + "twitterid": "SenJackyRosen", + "youtubeid": null + }, + "phone": "202-224-6244", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class1", + "senator_class_label": "Class 1", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2019-01-03", + "state": "NV", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.rosen.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 116, + 117, + 118 + ], + "current": true, + "description": "Junior Senator for Florida", + "district": null, + "enddate": "2025-01-03", + "extra": { + "address": "716 Hart Senate Office Building Washington DC 20510", + "contact_form": "https://www.rickscott.senate.gov/contact_rick", + "office": "716 Hart Senate Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "S001217", + "birthday": "1952-12-01", + "cspanid": null, + "firstname": "Rick", + "gender": "male", + "gender_label": "Male", + "lastname": "Scott", + "link": "https://www.govtrack.us/congress/members/rick_scott/412838", + "middlename": "", + "name": "Sen. Rick Scott [R-FL]", + "namemod": "", + "nickname": "", + "osid": "N00043290", + "pvsid": "124204", + "sortname": "Scott, Rick (Sen.) [R-FL]", + "twitterid": "SenRickScott", + "youtubeid": null + }, + "phone": "202-224-5274", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class1", + "senator_class_label": "Class 1", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2019-01-08", + "state": "FL", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.rickscott.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 116, + 117, + 118 + ], + "current": true, + "description": "Junior Senator for Indiana", + "district": null, + "enddate": "2025-01-03", + "extra": { + "address": "374 Russell Senate Office Building Washington DC 20510", + "contact_form": "http://www.braun.senate.gov/contact-mike", + "office": "374 Russell Senate Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "B001310", + "birthday": "1954-03-24", + "cspanid": null, + "firstname": "Mike", + "gender": "male", + "gender_label": "Male", + "lastname": "Braun", + "link": "https://www.govtrack.us/congress/members/mike_braun/412839", + "middlename": "", + "name": "Sen. Mike Braun [R-IN]", + "namemod": "", + "nickname": "", + "osid": "N00041731", + "pvsid": "148564", + "sortname": "Braun, Mike (Sen.) [R-IN]", + "twitterid": "SenatorBraun", + "youtubeid": null + }, + "phone": "202-224-4814", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class1", + "senator_class_label": "Class 1", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2019-01-03", + "state": "IN", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.braun.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 116, + 117, + 118 + ], + "current": true, + "description": "Junior Senator for Missouri", + "district": null, + "enddate": "2025-01-03", + "extra": { + "address": "212 Russell Senate Office Building Washington DC 20510", + "contact_form": "https://www.hawley.senate.gov/contact-senator-hawley", + "office": "212 Russell Senate Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "H001089", + "birthday": "1979-12-31", + "cspanid": null, + "firstname": "Joshua", + "gender": "male", + "gender_label": "Male", + "lastname": "Hawley", + "link": "https://www.govtrack.us/congress/members/joshua_hawley/412840", + "middlename": "", + "name": "Sen. Joshua “Josh” Hawley [R-MO]", + "namemod": "", + "nickname": "Josh", + "osid": "N00041620", + "pvsid": "169716", + "sortname": "Hawley, Joshua “Josh” (Sen.) [R-MO]", + "twitterid": "SenHawleyPress", + "youtubeid": null + }, + "phone": "202-224-6154", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class1", + "senator_class_label": "Class 1", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2019-01-03", + "state": "MO", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.hawley.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 116, + 117, + 118 + ], + "current": true, + "description": "Junior Senator for Utah", + "district": null, + "enddate": "2025-01-03", + "extra": { + "address": "124 Russell Senate Office Building Washington DC 20510", + "contact_form": "https://www.romney.senate.gov/contact-senator-romney", + "office": "124 Russell Senate Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "R000615", + "birthday": "1947-03-12", + "cspanid": null, + "firstname": "Mitt", + "gender": "male", + "gender_label": "Male", + "lastname": "Romney", + "link": "https://www.govtrack.us/congress/members/mitt_romney/412841", + "middlename": "", + "name": "Sen. Mitt Romney [R-UT]", + "namemod": "", + "nickname": "", + "osid": "N00000286", + "pvsid": "21942", + "sortname": "Romney, Mitt (Sen.) [R-UT]", + "twitterid": "SenatorRomney", + "youtubeid": null + }, + "phone": "202-224-5251", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class1", + "senator_class_label": "Class 1", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2019-01-03", + "state": "UT", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.romney.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 116, + 117 + ], + "current": true, + "description": "Junior Senator for Arizona", + "district": null, + "enddate": "2023-01-03", + "extra": { + "address": "B40B Dirksen Senate Office Building Washington DC 20510", + "contact_form": "https://www.kelly.senate.gov", + "how": "special-election", + "office": "B40b Dirksen Senate Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "K000377", + "birthday": "1964-02-21", + "cspanid": null, + "firstname": "Mark", + "gender": "male", + "gender_label": "Male", + "lastname": "Kelly", + "link": "https://www.govtrack.us/congress/members/mark_kelly/456794", + "middlename": "", + "name": "Sen. Mark Kelly [D-AZ]", + "namemod": "", + "nickname": "", + "osid": "N00044223", + "pvsid": null, + "sortname": "Kelly, Mark (Sen.) [D-AZ]", + "twitterid": "SenMarkKelly", + "youtubeid": null + }, + "phone": "202-224-2235", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class3", + "senator_class_label": "Class 3", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2020-12-02", + "state": "AZ", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.kelly.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117, + 118, + 119 + ], + "current": true, + "description": "Senior Senator for Maine", + "district": null, + "enddate": "2027-01-03", + "extra": { + "address": "413 Dirksen Senate Office Building Washington DC 20510", + "contact_form": "http://www.collins.senate.gov/contact", + "office": "413 Dirksen Senate Office Building", + "rss_url": "http://www.collins.senate.gov/public/?a=rss.feed" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "C001035", + "birthday": "1952-12-07", + "cspanid": 45738, + "firstname": "Susan", + "gender": "female", + "gender_label": "Female", + "lastname": "Collins", + "link": "https://www.govtrack.us/congress/members/susan_collins/300025", + "middlename": "M.", + "name": "Sen. Susan Collins [R-ME]", + "namemod": "", + "nickname": "", + "osid": "N00000491", + "pvsid": "379", + "sortname": "Collins, Susan (Sen.) [R-ME]", + "twitterid": "SenatorCollins", + "youtubeid": "SenatorSusanCollins" + }, + "phone": "202-224-2523", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class2", + "senator_class_label": "Class 2", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2021-01-03", + "state": "ME", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.collins.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117, + 118, + 119 + ], + "current": true, + "description": "Senior Senator for Texas", + "district": null, + "enddate": "2027-01-03", + "extra": { + "address": "517 Hart Senate Office Building Washington DC 20510", + "contact_form": "https://www.cornyn.senate.gov/contact", + "office": "517 Hart Senate Office Building", + "rss_url": "http://www.cornyn.senate.gov/public/?a=rss.feed" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "C001056", + "birthday": "1952-02-02", + "cspanid": 93131, + "firstname": "John", + "gender": "male", + "gender_label": "Male", + "lastname": "Cornyn", + "link": "https://www.govtrack.us/congress/members/john_cornyn/300027", + "middlename": "", + "name": "Sen. John Cornyn [R-TX]", + "namemod": "", + "nickname": "", + "osid": "N00024852", + "pvsid": "15375", + "sortname": "Cornyn, John (Sen.) [R-TX]", + "twitterid": "JohnCornyn", + "youtubeid": "senjohncornyn" + }, + "phone": "202-224-2934", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class2", + "senator_class_label": "Class 2", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2021-01-03", + "state": "TX", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.cornyn.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117, + 118, + 119 + ], + "current": true, + "description": "Senior Senator for Illinois", + "district": null, + "enddate": "2027-01-03", + "extra": { + "address": "711 Hart Senate Office Building Washington DC 20510", + "contact_form": "https://www.durbin.senate.gov/contact/", + "office": "711 Hart Senate Office Building", + "rss_url": "http://durbin.senate.gov/public/index.cfm/rss/feed" + }, + "leadership_title": "Senate Majority Whip", + "party": "Democrat", + "person": { + "bioguideid": "D000563", + "birthday": "1944-11-21", + "cspanid": 6741, + "firstname": "Richard", + "gender": "male", + "gender_label": "Male", + "lastname": "Durbin", + "link": "https://www.govtrack.us/congress/members/richard_durbin/300038", + "middlename": "J.", + "name": "Sen. Richard Durbin [D-IL]", + "namemod": "", + "nickname": "", + "osid": "N00004981", + "pvsid": "26847", + "sortname": "Durbin, Richard (Sen.) [D-IL]", + "twitterid": "SenatorDurbin", + "youtubeid": "SenatorDurbin" + }, + "phone": "202-224-2152", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class2", + "senator_class_label": "Class 2", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2021-01-03", + "state": "IL", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.durbin.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117, + 118, + 119 + ], + "current": true, + "description": "Senior Senator for South Carolina", + "district": null, + "enddate": "2027-01-03", + "extra": { + "address": "290 Russell Senate Office Building Washington DC 20510", + "contact_form": "https://www.lgraham.senate.gov/public/index.cfm/e-mail-senator-graham", + "office": "290 Russell Senate Office Building", + "rss_url": "http://www.lgraham.senate.gov/public/index.cfm?FuseAction=Rss.Feed" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "G000359", + "birthday": "1955-07-09", + "cspanid": 36782, + "firstname": "Lindsey", + "gender": "male", + "gender_label": "Male", + "lastname": "Graham", + "link": "https://www.govtrack.us/congress/members/lindsey_graham/300047", + "middlename": "O.", + "name": "Sen. Lindsey Graham [R-SC]", + "namemod": "", + "nickname": "", + "osid": "N00009975", + "pvsid": "21992", + "sortname": "Graham, Lindsey (Sen.) [R-SC]", + "twitterid": "GrahamBlog", + "youtubeid": "USSenLindseyGraham" + }, + "phone": "202-224-5972", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class2", + "senator_class_label": "Class 2", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2021-01-03", + "state": "SC", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.lgraham.senate.gov/public" + }, + { + "caucus": null, + "congress_numbers": [ + 117, + 118, + 119 + ], + "current": true, + "description": "Senior Senator for Oklahoma", + "district": null, + "enddate": "2027-01-03", + "extra": { + "address": "205 Russell Senate Office Building Washington DC 20510", + "contact_form": "https://www.inhofe.senate.gov/contact", + "office": "205 Russell Senate Office Building", + "rss_url": "http://www.inhofe.senate.gov/rss/feeds/?type=all&cachebuster=eea6c4d7%2d939c%2d5c1e%2db6c7aa3b8b291208" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "I000024", + "birthday": "1934-11-17", + "cspanid": 5619, + "firstname": "James", + "gender": "male", + "gender_label": "Male", + "lastname": "Inhofe", + "link": "https://www.govtrack.us/congress/members/james_inhofe/300055", + "middlename": "M.", + "name": "Sen. James “Jim” Inhofe [R-OK]", + "namemod": "", + "nickname": "Jim", + "osid": "N00005582", + "pvsid": "27027", + "sortname": "Inhofe, James “Jim” (Sen.) [R-OK]", + "twitterid": "InhofePress", + "youtubeid": "jiminhofepressoffice" + }, + "phone": "202-224-4721", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class2", + "senator_class_label": "Class 2", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2021-01-03", + "state": "OK", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.inhofe.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117, + 118, + 119 + ], + "current": true, + "description": "Senior Senator for Kentucky", + "district": null, + "enddate": "2027-01-03", + "extra": { + "address": "317 Russell Senate Office Building Washington DC 20510", + "contact_form": "http://www.mcconnell.senate.gov/public/index.cfm?p=contact", + "office": "317 Russell Senate Office Building", + "rss_url": "http://www.mcconnell.senate.gov/public/?a=rss.feed" + }, + "leadership_title": "Senate Minority Leader", + "party": "Republican", + "person": { + "bioguideid": "M000355", + "birthday": "1942-02-20", + "cspanid": 2351, + "firstname": "Mitch", + "gender": "male", + "gender_label": "Male", + "lastname": "McConnell", + "link": "https://www.govtrack.us/congress/members/mitch_mcconnell/300072", + "middlename": "", + "name": "Sen. Mitch McConnell [R-KY]", + "namemod": "", + "nickname": "", + "osid": "N00003389", + "pvsid": "53298", + "sortname": "McConnell, Mitch (Sen.) [R-KY]", + "twitterid": "McConnellPress", + "youtubeid": null + }, + "phone": "202-224-2541", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class2", + "senator_class_label": "Class 2", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2021-01-03", + "state": "KY", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.mcconnell.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117, + 118, + 119 + ], + "current": true, + "description": "Junior Senator for Oregon", + "district": null, + "enddate": "2027-01-03", + "extra": { + "address": "531 Hart Senate Office Building Washington DC 20510", + "contact_form": "http://www.merkley.senate.gov/contact/", + "office": "531 Hart Senate Office Building", + "rss_url": "http://www.merkley.senate.gov/rss/" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "M001176", + "birthday": "1956-10-24", + "cspanid": 1029842, + "firstname": "Jeff", + "gender": "male", + "gender_label": "Male", + "lastname": "Merkley", + "link": "https://www.govtrack.us/congress/members/jeff_merkley/412325", + "middlename": "", + "name": "Sen. Jeff Merkley [D-OR]", + "namemod": "", + "nickname": "", + "osid": "N00029303", + "pvsid": "23644", + "sortname": "Merkley, Jeff (Sen.) [D-OR]", + "twitterid": "SenJeffMerkley", + "youtubeid": "SenatorJeffMerkley" + }, + "phone": "202-224-3753", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class2", + "senator_class_label": "Class 2", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2021-01-03", + "state": "OR", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.merkley.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117, + 118, + 119 + ], + "current": true, + "description": "Senior Senator for Rhode Island", + "district": null, + "enddate": "2027-01-03", + "extra": { + "address": "728 Hart Senate Office Building Washington DC 20510", + "contact_form": "https://www.reed.senate.gov/contact/", + "office": "728 Hart Senate Office Building", + "rss_url": "https://www.reed.senate.gov//rss/feeds/?type=all" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "R000122", + "birthday": "1949-11-12", + "cspanid": 24239, + "firstname": "John", + "gender": "male", + "gender_label": "Male", + "lastname": "Reed", + "link": "https://www.govtrack.us/congress/members/john_reed/300081", + "middlename": "F.", + "name": "Sen. John “Jack” Reed [D-RI]", + "namemod": "", + "nickname": "Jack", + "osid": "N00000362", + "pvsid": "27060", + "sortname": "Reed, John “Jack” (Sen.) [D-RI]", + "twitterid": "SenJackReed", + "youtubeid": "SenatorReed" + }, + "phone": "202-224-4642", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class2", + "senator_class_label": "Class 2", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2021-01-03", + "state": "RI", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.reed.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117, + 118, + 119 + ], + "current": true, + "description": "Junior Senator for Idaho", + "district": null, + "enddate": "2027-01-03", + "extra": { + "address": "483 Russell Senate Office Building Washington DC 20510", + "contact_form": "http://www.risch.senate.gov/public/index.cfm?p=Email", + "office": "483 Russell Senate Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "R000584", + "birthday": "1943-05-03", + "cspanid": 1020034, + "firstname": "James", + "gender": "male", + "gender_label": "Male", + "lastname": "Risch", + "link": "https://www.govtrack.us/congress/members/james_risch/412322", + "middlename": "E.", + "name": "Sen. James Risch [R-ID]", + "namemod": "", + "nickname": "", + "osid": "N00029441", + "pvsid": "2919", + "sortname": "Risch, James (Sen.) [R-ID]", + "twitterid": "SenatorRisch", + "youtubeid": "SenatorJamesRisch" + }, + "phone": "202-224-2752", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class2", + "senator_class_label": "Class 2", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2021-01-03", + "state": "ID", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.risch.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117, + 118, + 119 + ], + "current": true, + "description": "Senior Senator for New Hampshire", + "district": null, + "enddate": "2027-01-03", + "extra": { + "address": "506 Hart Senate Office Building Washington DC 20510", + "contact_form": "https://www.shaheen.senate.gov/contact/contact-jeanne", + "office": "506 Hart Senate Office Building", + "rss_url": "http://www.shaheen.senate.gov/rss/" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "S001181", + "birthday": "1947-01-28", + "cspanid": 22850, + "firstname": "Jeanne", + "gender": "female", + "gender_label": "Female", + "lastname": "Shaheen", + "link": "https://www.govtrack.us/congress/members/jeanne_shaheen/412323", + "middlename": "", + "name": "Sen. Jeanne Shaheen [D-NH]", + "namemod": "", + "nickname": "", + "osid": "N00024790", + "pvsid": "1663", + "sortname": "Shaheen, Jeanne (Sen.) [D-NH]", + "twitterid": "SenatorShaheen", + "youtubeid": "senatorshaheen" + }, + "phone": "202-224-2841", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class2", + "senator_class_label": "Class 2", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2021-01-03", + "state": "NH", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.shaheen.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117, + 118, + 119 + ], + "current": true, + "description": "Senior Senator for Virginia", + "district": null, + "enddate": "2027-01-03", + "extra": { + "address": "703 Hart Senate Office Building Washington DC 20510", + "contact_form": "http://www.warner.senate.gov/public/index.cfm?p=Contact", + "office": "703 Hart Senate Office Building", + "rss_url": "http://www.warner.senate.gov/public/?a=rss.feed" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "W000805", + "birthday": "1954-12-15", + "cspanid": 7630, + "firstname": "Mark", + "gender": "male", + "gender_label": "Male", + "lastname": "Warner", + "link": "https://www.govtrack.us/congress/members/mark_warner/412321", + "middlename": "R.", + "name": "Sen. Mark Warner [D-VA]", + "namemod": "", + "nickname": "", + "osid": "N00002097", + "pvsid": "535", + "sortname": "Warner, Mark (Sen.) [D-VA]", + "twitterid": "MarkWarner", + "youtubeid": "SenatorMarkWarner" + }, + "phone": "202-224-2023", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class2", + "senator_class_label": "Class 2", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2021-01-03", + "state": "VA", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.warner.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117, + 118, + 119 + ], + "current": true, + "description": "Junior Senator for Delaware", + "district": null, + "enddate": "2027-01-03", + "extra": { + "address": "218 Russell Senate Office Building Washington DC 20510", + "contact_form": "https://www.coons.senate.gov/contact", + "office": "218 Russell Senate Office Building", + "rss_url": "http://www.coons.senate.gov/rss/feeds/?type=all" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "C001088", + "birthday": "1963-09-09", + "cspanid": 9269028, + "firstname": "Christopher", + "gender": "male", + "gender_label": "Male", + "lastname": "Coons", + "link": "https://www.govtrack.us/congress/members/christopher_coons/412390", + "middlename": "Andrew", + "name": "Sen. Christopher Coons [D-DE]", + "namemod": "", + "nickname": "", + "osid": "N00031820", + "pvsid": "122834", + "sortname": "Coons, Christopher (Sen.) [D-DE]", + "twitterid": "ChrisCoons", + "youtubeid": "senatorchriscoons" + }, + "phone": "202-224-5042", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class2", + "senator_class_label": "Class 2", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2021-01-03", + "state": "DE", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.coons.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117, + 118, + 119 + ], + "current": true, + "description": "Junior Senator for West Virginia", + "district": null, + "enddate": "2027-01-03", + "extra": { + "address": "172 Russell Senate Office Building Washington DC 20510", + "contact_form": "https://www.capito.senate.gov/contact/contact-shelley", + "office": "172 Russell Senate Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "C001047", + "birthday": "1953-11-26", + "cspanid": 83737, + "firstname": "Shelley", + "gender": "female", + "gender_label": "Female", + "lastname": "Capito", + "link": "https://www.govtrack.us/congress/members/shelley_capito/400061", + "middlename": "Moore", + "name": "Sen. Shelley Capito [R-WV]", + "namemod": "", + "nickname": "", + "osid": "N00009771", + "pvsid": "11701", + "sortname": "Capito, Shelley (Sen.) [R-WV]", + "twitterid": "SenCapito", + "youtubeid": null + }, + "phone": "202-224-6472", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class2", + "senator_class_label": "Class 2", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2021-01-03", + "state": "WV", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.capito.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117, + 118, + 119 + ], + "current": true, + "description": "Senior Senator for Louisiana", + "district": null, + "enddate": "2027-01-03", + "extra": { + "address": "520 Hart Senate Office Building Washington DC 20510", + "contact_form": "https://www.cassidy.senate.gov/contact", + "office": "520 Hart Senate Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "C001075", + "birthday": "1957-09-28", + "cspanid": 1030546, + "firstname": "Bill", + "gender": "male", + "gender_label": "Male", + "lastname": "Cassidy", + "link": "https://www.govtrack.us/congress/members/bill_cassidy/412269", + "middlename": "", + "name": "Sen. Bill Cassidy [R-LA]", + "namemod": "", + "nickname": "", + "osid": "N00030245", + "pvsid": "69494", + "sortname": "Cassidy, Bill (Sen.) [R-LA]", + "twitterid": "SenBillCassidy", + "youtubeid": "SenatorBillCassidy" + }, + "phone": "202-224-5824", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class2", + "senator_class_label": "Class 2", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2021-01-03", + "state": "LA", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.cassidy.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117, + 118, + 119 + ], + "current": true, + "description": "Junior Senator for New Mexico", + "district": null, + "enddate": "2027-01-03", + "extra": { + "address": "B40C Dirksen Senate Office Building Washington DC 20510", + "contact_form": "https://www.lujan.senate.gov", + "office": "B40c Dirksen Senate Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "L000570", + "birthday": "1972-06-07", + "cspanid": 1031351, + "firstname": "Ben", + "gender": "male", + "gender_label": "Male", + "lastname": "Luján", + "link": "https://www.govtrack.us/congress/members/ben_lujan/412293", + "middlename": "Ray", + "name": "Sen. Ben Luján [D-NM]", + "namemod": "", + "nickname": "", + "osid": "N00029562", + "pvsid": "102842", + "sortname": "Luján, Ben (Sen.) [D-NM]", + "twitterid": "SenatorLujan", + "youtubeid": null + }, + "phone": "202-224-6621", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class2", + "senator_class_label": "Class 2", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2021-01-03", + "state": "NM", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.lujan.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117, + 118, + 119 + ], + "current": true, + "description": "Junior Senator for Massachusetts", + "district": null, + "enddate": "2027-01-03", + "extra": { + "address": "255 Dirksen Senate Office Building Washington DC 20510", + "contact_form": "https://www.markey.senate.gov/contact", + "office": "255 Dirksen Senate Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "M000133", + "birthday": "1946-07-11", + "cspanid": 260, + "firstname": "Edward", + "gender": "male", + "gender_label": "Male", + "lastname": "Markey", + "link": "https://www.govtrack.us/congress/members/edward_markey/400253", + "middlename": "J.", + "name": "Sen. Edward “Ed” Markey [D-MA]", + "namemod": "", + "nickname": "Ed", + "osid": "N00000270", + "pvsid": "26900", + "sortname": "Markey, Edward “Ed” (Sen.) [D-MA]", + "twitterid": "SenMarkey", + "youtubeid": "RepMarkey" + }, + "phone": "202-224-2742", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class2", + "senator_class_label": "Class 2", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2021-01-03", + "state": "MA", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.markey.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117, + 118, + 119 + ], + "current": true, + "description": "Junior Senator for Michigan", + "district": null, + "enddate": "2027-01-03", + "extra": { + "address": "724 Hart Senate Office Building Washington DC 20510", + "contact_form": "https://www.peters.senate.gov/contact/email-gary", + "office": "724 Hart Senate Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "P000595", + "birthday": "1958-12-01", + "cspanid": 50199, + "firstname": "Gary", + "gender": "male", + "gender_label": "Male", + "lastname": "Peters", + "link": "https://www.govtrack.us/congress/members/gary_peters/412305", + "middlename": "C.", + "name": "Sen. Gary Peters [D-MI]", + "namemod": "", + "nickname": "", + "osid": "N00029277", + "pvsid": "8749", + "sortname": "Peters, Gary (Sen.) [D-MI]", + "twitterid": "SenGaryPeters", + "youtubeid": "RepGaryPeters" + }, + "phone": "202-224-6221", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class2", + "senator_class_label": "Class 2", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2021-01-03", + "state": "MI", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.peters.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117, + 118, + 119 + ], + "current": true, + "description": "Junior Senator for Arkansas", + "district": null, + "enddate": "2027-01-03", + "extra": { + "address": "326 Russell Senate Office Building Washington DC 20510", + "contact_form": "https://www.cotton.senate.gov/contact/contact-tom", + "office": "326 Russell Senate Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "C001095", + "birthday": "1977-05-13", + "cspanid": 63928, + "firstname": "Tom", + "gender": "male", + "gender_label": "Male", + "lastname": "Cotton", + "link": "https://www.govtrack.us/congress/members/tom_cotton/412508", + "middlename": "", + "name": "Sen. Tom Cotton [R-AR]", + "namemod": "", + "nickname": "", + "osid": "N00033363", + "pvsid": "135651", + "sortname": "Cotton, Tom (Sen.) [R-AR]", + "twitterid": "SenTomCotton", + "youtubeid": "RepTomCotton" + }, + "phone": "202-224-2353", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class2", + "senator_class_label": "Class 2", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2021-01-03", + "state": "AR", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.cotton.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117, + 118, + 119 + ], + "current": true, + "description": "Junior Senator for Montana", + "district": null, + "enddate": "2027-01-03", + "extra": { + "address": "320 Hart Senate Office Building Washington DC 20510", + "contact_form": "https://www.daines.senate.gov/connect/email-steve", + "office": "320 Hart Senate Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "D000618", + "birthday": "1962-08-20", + "cspanid": 1034037, + "firstname": "Steve", + "gender": "male", + "gender_label": "Male", + "lastname": "Daines", + "link": "https://www.govtrack.us/congress/members/steve_daines/412549", + "middlename": "", + "name": "Sen. Steve Daines [R-MT]", + "namemod": "", + "nickname": "", + "osid": "N00033054", + "pvsid": "135720", + "sortname": "Daines, Steve (Sen.) [R-MT]", + "twitterid": "SteveDaines", + "youtubeid": "SteveDainesMT" + }, + "phone": "202-224-2651", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class2", + "senator_class_label": "Class 2", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2021-01-03", + "state": "MT", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.daines.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117, + 118, + 119 + ], + "current": true, + "description": "Junior Senator for New Jersey", + "district": null, + "enddate": "2027-01-03", + "extra": { + "address": "717 Hart Senate Office Building Washington DC 20510", + "contact_form": "https://www.booker.senate.gov/?p=contact", + "office": "717 Hart Senate Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "B001288", + "birthday": "1969-04-27", + "cspanid": 84679, + "firstname": "Cory", + "gender": "male", + "gender_label": "Male", + "lastname": "Booker", + "link": "https://www.govtrack.us/congress/members/cory_booker/412598", + "middlename": "Anthony", + "name": "Sen. Cory Booker [D-NJ]", + "namemod": "", + "nickname": "", + "osid": "N00035267", + "pvsid": "76151", + "sortname": "Booker, Cory (Sen.) [D-NJ]", + "twitterid": "SenBooker", + "youtubeid": "SenCoryBooker" + }, + "phone": "202-224-3224", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class2", + "senator_class_label": "Class 2", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2021-01-03", + "state": "NJ", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.booker.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117, + 118, + 119 + ], + "current": true, + "description": "Junior Senator for Alaska", + "district": null, + "enddate": "2027-01-03", + "extra": { + "address": "302 Hart Senate Office Building Washington DC 20510", + "contact_form": "https://www.sullivan.senate.gov/contact/email", + "office": "302 Hart Senate Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "S001198", + "birthday": "1964-11-13", + "cspanid": 1023262, + "firstname": "Dan", + "gender": "male", + "gender_label": "Male", + "lastname": "Sullivan", + "link": "https://www.govtrack.us/congress/members/dan_sullivan/412665", + "middlename": "", + "name": "Sen. Dan Sullivan [R-AK]", + "namemod": "", + "nickname": "", + "osid": "N00035774", + "pvsid": "114964", + "sortname": "Sullivan, Dan (Sen.) [R-AK]", + "twitterid": "SenDanSullivan", + "youtubeid": null + }, + "phone": "202-224-3004", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class2", + "senator_class_label": "Class 2", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2021-01-03", + "state": "AK", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.sullivan.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117, + 118, + 119 + ], + "current": true, + "description": "Junior Senator for Iowa", + "district": null, + "enddate": "2027-01-03", + "extra": { + "address": "730 Hart Senate Office Building Washington DC 20510", + "contact_form": "https://www.ernst.senate.gov/public/index.cfm/contact", + "office": "730 Hart Senate Office Building" + }, + "leadership_title": "Senate Republican Conference Vice Chair", + "party": "Republican", + "person": { + "bioguideid": "E000295", + "birthday": "1970-07-01", + "cspanid": 75342, + "firstname": "Joni", + "gender": "female", + "gender_label": "Female", + "lastname": "Ernst", + "link": "https://www.govtrack.us/congress/members/joni_ernst/412667", + "middlename": "", + "name": "Sen. Joni Ernst [R-IA]", + "namemod": "", + "nickname": "", + "osid": "N00035483", + "pvsid": "128583", + "sortname": "Ernst, Joni (Sen.) [R-IA]", + "twitterid": "SenJoniErnst", + "youtubeid": null + }, + "phone": "202-224-3254", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class2", + "senator_class_label": "Class 2", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2021-01-03", + "state": "IA", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.ernst.senate.gov/public" + }, + { + "caucus": null, + "congress_numbers": [ + 117, + 118, + 119 + ], + "current": true, + "description": "Junior Senator for North Carolina", + "district": null, + "enddate": "2027-01-03", + "extra": { + "address": "113 Dirksen Senate Office Building Washington DC 20510", + "contact_form": "https://www.tillis.senate.gov/public/index.cfm/email-me", + "office": "113 Dirksen Senate Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "T000476", + "birthday": "1960-08-30", + "cspanid": 77055, + "firstname": "Thom", + "gender": "male", + "gender_label": "Male", + "lastname": "Tillis", + "link": "https://www.govtrack.us/congress/members/thom_tillis/412668", + "middlename": "", + "name": "Sen. Thom Tillis [R-NC]", + "namemod": "", + "nickname": "", + "osid": "N00035492", + "pvsid": "57717", + "sortname": "Tillis, Thom (Sen.) [R-NC]", + "twitterid": "senthomtillis", + "youtubeid": null + }, + "phone": "202-224-6342", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class2", + "senator_class_label": "Class 2", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2021-01-03", + "state": "NC", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.tillis.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117, + 118, + 119 + ], + "current": true, + "description": "Junior Senator for South Dakota", + "district": null, + "enddate": "2027-01-03", + "extra": { + "address": "502 Hart Senate Office Building Washington DC 20510", + "contact_form": "https://www.rounds.senate.gov/contact/email-mike", + "office": "502 Hart Senate Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "R000605", + "birthday": "1954-10-24", + "cspanid": 78317, + "firstname": "Mike", + "gender": "male", + "gender_label": "Male", + "lastname": "Rounds", + "link": "https://www.govtrack.us/congress/members/mike_rounds/412669", + "middlename": "", + "name": "Sen. Mike Rounds [R-SD]", + "namemod": "", + "nickname": "", + "osid": "N00035187", + "pvsid": "7455", + "sortname": "Rounds, Mike (Sen.) [R-SD]", + "twitterid": "SenatorRounds", + "youtubeid": null + }, + "phone": "202-224-5842", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class2", + "senator_class_label": "Class 2", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2021-01-03", + "state": "SD", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.rounds.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117, + 118, + 119 + ], + "current": true, + "description": "Junior Senator for Nebraska", + "district": null, + "enddate": "2027-01-03", + "extra": { + "address": "107 Russell Senate Office Building Washington DC 20510", + "contact_form": "http://www.sasse.senate.gov/public/index.cfm/email-ben", + "office": "107 Russell Senate Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "S001197", + "birthday": "1972-02-22", + "cspanid": 77429, + "firstname": "Benjamin", + "gender": "male", + "gender_label": "Male", + "lastname": "Sasse", + "link": "https://www.govtrack.us/congress/members/benjamin_sasse/412671", + "middlename": "Eric", + "name": "Sen. Benjamin “Ben” Sasse [R-NE]", + "namemod": "", + "nickname": "Ben", + "osid": "N00035544", + "pvsid": "150182", + "sortname": "Sasse, Benjamin “Ben” (Sen.) [R-NE]", + "twitterid": "SenSasse", + "youtubeid": null + }, + "phone": "202-224-4224", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class2", + "senator_class_label": "Class 2", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2021-01-03", + "state": "NE", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.sasse.senate.gov/public" + }, + { + "caucus": null, + "congress_numbers": [ + 117, + 118, + 119 + ], + "current": true, + "description": "Junior Senator for Kansas", + "district": null, + "enddate": "2027-01-03", + "extra": { + "address": "B33 Russell Senate Office Building Washington DC 20510", + "contact_form": "https://www.marshall.senate.gov", + "office": "B33 Russell Senate Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "M001198", + "birthday": "1960-08-09", + "cspanid": 103425, + "firstname": "Roger", + "gender": "male", + "gender_label": "Male", + "lastname": "Marshall", + "link": "https://www.govtrack.us/congress/members/roger_marshall/412704", + "middlename": "", + "name": "Sen. Roger Marshall [R-KS]", + "namemod": "", + "nickname": "", + "osid": "N00037034", + "pvsid": "172080", + "sortname": "Marshall, Roger (Sen.) [R-KS]", + "twitterid": "SenatorMarshall", + "youtubeid": null + }, + "phone": "202-224-4774", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class2", + "senator_class_label": "Class 2", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2021-01-03", + "state": "KS", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.marshall.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117, + 118, + 119 + ], + "current": true, + "description": "Junior Senator for Minnesota", + "district": null, + "enddate": "2027-01-03", + "extra": { + "address": "720 Hart Senate Office Building Washington DC 20510", + "contact_form": "https://www.smith.senate.gov/contact-tina", + "office": "720 Hart Senate Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "S001203", + "birthday": "1958-03-04", + "cspanid": 111313, + "firstname": "Tina", + "gender": "female", + "gender_label": "Female", + "lastname": "Smith", + "link": "https://www.govtrack.us/congress/members/tina_smith/412742", + "middlename": "Flint", + "name": "Sen. Tina Smith [D-MN]", + "namemod": "", + "nickname": "", + "osid": "N00042353", + "pvsid": "152968", + "sortname": "Smith, Tina (Sen.) [D-MN]", + "twitterid": "SenTinaSmith", + "youtubeid": null + }, + "phone": "202-224-5641", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class2", + "senator_class_label": "Class 2", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2021-01-03", + "state": "MN", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.smith.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117, + 118, + 119 + ], + "current": true, + "description": "Junior Senator for Mississippi", + "district": null, + "enddate": "2027-01-03", + "extra": { + "address": "702 Hart Senate Office Building Washington DC 20510", + "contact_form": "https://www.hydesmith.senate.gov/content/contact-senator", + "office": "702 Hart Senate Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "H001079", + "birthday": "1959-05-10", + "cspanid": 113208, + "firstname": "Cindy", + "gender": "female", + "gender_label": "Female", + "lastname": "Hyde-Smith", + "link": "https://www.govtrack.us/congress/members/cindy_hyde_smith/412743", + "middlename": "", + "name": "Sen. Cindy Hyde-Smith [R-MS]", + "namemod": "", + "nickname": "", + "osid": "N00043298", + "pvsid": "20784", + "sortname": "Hyde-Smith, Cindy (Sen.) [R-MS]", + "twitterid": "SenHydeSmith", + "youtubeid": null + }, + "phone": "202-224-5054", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class2", + "senator_class_label": "Class 2", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2021-01-03", + "state": "MS", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.hydesmith.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117, + 118, + 119 + ], + "current": true, + "description": "Junior Senator for Wyoming", + "district": null, + "enddate": "2027-01-03", + "extra": { + "address": "G12 Dirksen Senate Office Building Washington DC 20510", + "contact_form": "https://www.lummis.senate.gov", + "office": "G12 Dirksen Senate Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "L000571", + "birthday": "1954-09-10", + "cspanid": 1031365, + "firstname": "Cynthia", + "gender": "female", + "gender_label": "Female", + "lastname": "Lummis", + "link": "https://www.govtrack.us/congress/members/cynthia_lummis/412294", + "middlename": "M.", + "name": "Sen. Cynthia Lummis [R-WY]", + "namemod": "", + "nickname": "", + "osid": "N00029788", + "pvsid": "15546", + "sortname": "Lummis, Cynthia (Sen.) [R-WY]", + "twitterid": "SenLummis", + "youtubeid": null + }, + "phone": "202-224-3424", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class2", + "senator_class_label": "Class 2", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2021-01-03", + "state": "WY", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.lummis.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117, + 118, + 119 + ], + "current": true, + "description": "Junior Senator for Alabama", + "district": null, + "enddate": "2027-01-03", + "extra": { + "address": "B40A Dirksen Senate Office Building Washington DC 20510", + "contact_form": "https://www.tuberville.senate.gov", + "office": "B40a Dirksen Senate Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "T000278", + "birthday": "1954-09-18", + "cspanid": null, + "firstname": "Tommy", + "gender": "male", + "gender_label": "Male", + "lastname": "Tuberville", + "link": "https://www.govtrack.us/congress/members/tommy_tuberville/456796", + "middlename": "Hawley", + "name": "Sen. Tommy Tuberville [R-AL]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": "188306", + "sortname": "Tuberville, Tommy (Sen.) [R-AL]", + "twitterid": "SenTuberville", + "youtubeid": null + }, + "phone": "202-224-4124", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class2", + "senator_class_label": "Class 2", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2021-01-03", + "state": "AL", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.tuberville.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117, + 118, + 119 + ], + "current": true, + "description": "Junior Senator for Colorado", + "district": null, + "enddate": "2027-01-03", + "extra": { + "address": "B85 Russell Senate Office Building Washington DC 20510", + "contact_form": "https://www.hickenlooper.senate.gov", + "office": "B85 Russell Senate Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "H000273", + "birthday": "1952-02-07", + "cspanid": null, + "firstname": "John", + "gender": "male", + "gender_label": "Male", + "lastname": "Hickenlooper", + "link": "https://www.govtrack.us/congress/members/john_hickenlooper/456797", + "middlename": "Wright", + "name": "Sen. John Hickenlooper [D-CO]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Hickenlooper, John (Sen.) [D-CO]", + "twitterid": null, + "youtubeid": null + }, + "phone": "202-224-5941", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class2", + "senator_class_label": "Class 2", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2021-01-03", + "state": "CO", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.hickenlooper.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117, + 118, + 119 + ], + "current": true, + "description": "Junior Senator for Tennessee", + "district": null, + "enddate": "2027-01-03", + "extra": { + "address": "B11 Russell Senate Office Building Washington DC 20510", + "contact_form": "https://www.hagerty.senate.gov", + "office": "B11 Russell Senate Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "H000601", + "birthday": "1959-08-14", + "cspanid": null, + "firstname": "Bill", + "gender": "male", + "gender_label": "Male", + "lastname": "Hagerty", + "link": "https://www.govtrack.us/congress/members/bill_hagerty/456798", + "middlename": "Francis", + "name": "Sen. Bill Hagerty [R-TN]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": "128466", + "sortname": "Hagerty, Bill (Sen.) [R-TN]", + "twitterid": "SenatorHagerty", + "youtubeid": null + }, + "phone": "202-224-4944", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class2", + "senator_class_label": "Class 2", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2021-01-03", + "state": "TN", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.hagerty.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Junior Senator for California", + "district": null, + "enddate": "2023-01-03", + "extra": { + "address": "112 Hart Senate Office Building Washington DC 20510", + "contact_form": "http://www.padilla.senate.gov", + "how": "appointment", + "office": "112 Hart Senate Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "P000145", + "birthday": "1973-03-22", + "cspanid": null, + "firstname": "Alejandro", + "gender": "male", + "gender_label": "Male", + "lastname": "Padilla", + "link": "https://www.govtrack.us/congress/members/alejandro_padilla/456856", + "middlename": "", + "name": "Sen. Alejandro “Alex” Padilla [D-CA]", + "namemod": "", + "nickname": "Alex", + "osid": null, + "pvsid": null, + "sortname": "Padilla, Alejandro “Alex” (Sen.) [D-CA]", + "twitterid": "SenAlexPadilla", + "youtubeid": null + }, + "phone": "202-224-3553", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class3", + "senator_class_label": "Class 3", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2021-01-20", + "state": "CA", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.padilla.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117, + 118, + 119 + ], + "current": true, + "description": "Senior Senator for Georgia", + "district": null, + "enddate": "2027-01-03", + "extra": { + "address": "825 B&C Hart Senate Office Building Washington DC 20510", + "contact_form": "https://www.ossoff.senate.gov", + "office": "825 B&c Hart Senate Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "O000174", + "birthday": "1987-02-16", + "cspanid": null, + "firstname": "Jon", + "gender": "male", + "gender_label": "Male", + "lastname": "Ossoff", + "link": "https://www.govtrack.us/congress/members/jon_ossoff/456857", + "middlename": "", + "name": "Sen. Jon Ossoff [D-GA]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Ossoff, Jon (Sen.) [D-GA]", + "twitterid": "SenOssoff", + "youtubeid": null + }, + "phone": "202-224-3521", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class2", + "senator_class_label": "Class 2", + "senator_rank": "senior", + "senator_rank_label": "Senior", + "startdate": "2021-01-20", + "state": "GA", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.ossoff.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Junior Senator for Georgia", + "district": null, + "enddate": "2023-01-03", + "extra": { + "address": "B40D Dirksen Senate Office Building Washington DC 20510", + "contact_form": "https://www.warnock.senate.gov", + "how": "special-election", + "office": "B40d Dirksen Senate Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "W000790", + "birthday": "1969-07-23", + "cspanid": null, + "firstname": "Raphael", + "gender": "male", + "gender_label": "Male", + "lastname": "Warnock", + "link": "https://www.govtrack.us/congress/members/raphael_warnock/456858", + "middlename": "Gamaliel", + "name": "Sen. Raphael Warnock [D-GA]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Warnock, Raphael (Sen.) [D-GA]", + "twitterid": "SenatorWarnock", + "youtubeid": null + }, + "phone": "202-224-3643", + "role_type": "senator", + "role_type_label": "Senator", + "senator_class": "class3", + "senator_class_label": "Class 3", + "senator_rank": "junior", + "senator_rank_label": "Junior", + "startdate": "2021-01-20", + "state": "GA", + "title": "Sen.", + "title_long": "Senator", + "website": "https://www.warnock.senate.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Alabama's 4th congressional district", + "district": 4, + "enddate": "2023-01-03", + "extra": { + "address": "266 Cannon House Office Building Washington DC 20515-0104", + "office": "266 Cannon House Office Building", + "rss_url": "http://aderholt.house.gov/common/rss//index.cfm?rss=20" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "A000055", + "birthday": "1965-07-22", + "cspanid": 45516, + "firstname": "Robert", + "gender": "male", + "gender_label": "Male", + "lastname": "Aderholt", + "link": "https://www.govtrack.us/congress/members/robert_aderholt/400004", + "middlename": "B.", + "name": "Rep. Robert Aderholt [R-AL4]", + "namemod": "", + "nickname": "", + "osid": "N00003028", + "pvsid": "441", + "sortname": "Aderholt, Robert (Rep.) [R-AL4]", + "twitterid": "Robert_Aderholt", + "youtubeid": "RobertAderholt" + }, + "phone": "202-225-4876", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "AL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://aderholt.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 37th congressional district", + "district": 37, + "enddate": "2023-01-03", + "extra": { + "address": "2021 Rayburn House Office Building Washington DC 20515-0537", + "office": "2021 Rayburn House Office Building", + "rss_url": "http://bass.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "B001270", + "birthday": "1953-10-03", + "cspanid": 62502, + "firstname": "Karen", + "gender": "female", + "gender_label": "Female", + "lastname": "Bass", + "link": "https://www.govtrack.us/congress/members/karen_bass/412404", + "middlename": "", + "name": "Rep. Karen Bass [D-CA37]", + "namemod": "", + "nickname": "", + "osid": "N00031877", + "pvsid": "28963", + "sortname": "Bass, Karen (Rep.) [D-CA37]", + "twitterid": "RepKarenBass", + "youtubeid": "RepKarenBass" + }, + "phone": "202-225-7084", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://bass.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Florida's 12th congressional district", + "district": 12, + "enddate": "2023-01-03", + "extra": { + "address": "2354 Rayburn House Office Building Washington DC 20515-0912", + "office": "2354 Rayburn House Office Building", + "rss_url": "http://bilirakis.house.gov/index.php?format=feed&type=rss" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "B001257", + "birthday": "1963-02-08", + "cspanid": 1022873, + "firstname": "Gus", + "gender": "male", + "gender_label": "Male", + "lastname": "Bilirakis", + "link": "https://www.govtrack.us/congress/members/gus_bilirakis/412250", + "middlename": "M.", + "name": "Rep. Gus Bilirakis [R-FL12]", + "namemod": "", + "nickname": "", + "osid": "N00027462", + "pvsid": "17318", + "sortname": "Bilirakis, Gus (Rep.) [R-FL12]", + "twitterid": "RepGusBilirakis", + "youtubeid": "RepGusBilirakis" + }, + "phone": "202-225-5755", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "FL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://bilirakis.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Georgia's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "2407 Rayburn House Office Building Washington DC 20515-1002", + "office": "2407 Rayburn House Office Building", + "rss_url": "http://bishop.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "B000490", + "birthday": "1947-02-04", + "cspanid": 26194, + "firstname": "Sanford", + "gender": "male", + "gender_label": "Male", + "lastname": "Bishop", + "link": "https://www.govtrack.us/congress/members/sanford_bishop/400030", + "middlename": "D.", + "name": "Rep. Sanford Bishop [D-GA2]", + "namemod": "Jr.", + "nickname": "", + "osid": "N00002674", + "pvsid": "26817", + "sortname": "Bishop, Sanford (Rep.) [D-GA2]", + "twitterid": "SanfordBishop", + "youtubeid": "RepSanfordBishop" + }, + "phone": "202-225-3631", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "GA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://bishop.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Oregon's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "1111 Longworth House Office Building Washington DC 20515-3703", + "office": "1111 Longworth House Office Building", + "rss_url": "http://blumenauer.house.gov/index.php?format=feed&type=rss" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "B000574", + "birthday": "1948-08-16", + "cspanid": 43809, + "firstname": "Earl", + "gender": "male", + "gender_label": "Male", + "lastname": "Blumenauer", + "link": "https://www.govtrack.us/congress/members/earl_blumenauer/400033", + "middlename": "", + "name": "Rep. Earl Blumenauer [D-OR3]", + "namemod": "", + "nickname": "", + "osid": "N00007727", + "pvsid": "367", + "sortname": "Blumenauer, Earl (Rep.) [D-OR3]", + "twitterid": "BlumenauerMedia", + "youtubeid": "RepBlumenauer" + }, + "phone": "202-225-4811", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "OR", + "title": "Rep.", + "title_long": "Representative", + "website": "https://blumenauer.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Texas's 8th congressional district", + "district": 8, + "enddate": "2023-01-03", + "extra": { + "address": "1011 Longworth House Office Building Washington DC 20515-4308", + "office": "1011 Longworth House Office Building", + "rss_url": "http://kevinbrady.house.gov/common/rss/index.cfm?rss=49" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "B000755", + "birthday": "1955-04-11", + "cspanid": 45749, + "firstname": "Kevin", + "gender": "male", + "gender_label": "Male", + "lastname": "Brady", + "link": "https://www.govtrack.us/congress/members/kevin_brady/400046", + "middlename": "P.", + "name": "Rep. Kevin Brady [R-TX8]", + "namemod": "", + "nickname": "", + "osid": "N00005883", + "pvsid": "361", + "sortname": "Brady, Kevin (Rep.) [R-TX8]", + "twitterid": "RepKevinBrady", + "youtubeid": "KBrady8" + }, + "phone": "202-225-4901", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TX", + "title": "Rep.", + "title_long": "Representative", + "website": "https://kevinbrady.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Alabama's 5th congressional district", + "district": 5, + "enddate": "2023-01-03", + "extra": { + "address": "2185 Rayburn House Office Building Washington DC 20515-0105", + "office": "2185 Rayburn House Office Building", + "rss_url": "http://brooks.house.gov/rss/press-releases.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "B001274", + "birthday": "1954-04-29", + "cspanid": 94888, + "firstname": "Mo", + "gender": "male", + "gender_label": "Male", + "lastname": "Brooks", + "link": "https://www.govtrack.us/congress/members/mo_brooks/412395", + "middlename": "", + "name": "Rep. Mo Brooks [R-AL5]", + "namemod": "", + "nickname": "", + "osid": "N00030910", + "pvsid": "121610", + "sortname": "Brooks, Mo (Rep.) [R-AL5]", + "twitterid": "RepMoBrooks", + "youtubeid": "RepMoBrooks" + }, + "phone": "202-225-4801", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "AL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://brooks.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Florida's 16th congressional district", + "district": 16, + "enddate": "2023-01-03", + "extra": { + "address": "2110 Rayburn House Office Building Washington DC 20515-0916", + "office": "2110 Rayburn House Office Building", + "rss_url": "http://buchanan.house.gov/index.php?option=com_bca-rss-syndicator&feed_id=2" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "B001260", + "birthday": "1951-05-08", + "cspanid": 1021626, + "firstname": "Vern", + "gender": "male", + "gender_label": "Male", + "lastname": "Buchanan", + "link": "https://www.govtrack.us/congress/members/vern_buchanan/412196", + "middlename": "", + "name": "Rep. Vern Buchanan [R-FL16]", + "namemod": "", + "nickname": "", + "osid": "N00027626", + "pvsid": "66247", + "sortname": "Buchanan, Vern (Rep.) [R-FL16]", + "twitterid": "VernBuchanan", + "youtubeid": "vernbuchanan" + }, + "phone": "202-225-5015", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "FL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://buchanan.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Indiana's 8th congressional district", + "district": 8, + "enddate": "2023-01-03", + "extra": { + "address": "2313 Rayburn House Office Building Washington DC 20515-1408", + "office": "2313 Rayburn House Office Building", + "rss_url": "http://bucshon.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "B001275", + "birthday": "1962-05-31", + "cspanid": 61837, + "firstname": "Larry", + "gender": "male", + "gender_label": "Male", + "lastname": "Bucshon", + "link": "https://www.govtrack.us/congress/members/larry_bucshon/412427", + "middlename": "", + "name": "Rep. Larry Bucshon [R-IN8]", + "namemod": "", + "nickname": "", + "osid": "N00031227", + "pvsid": "120335", + "sortname": "Bucshon, Larry (Rep.) [R-IN8]", + "twitterid": "RepLarryBucshon", + "youtubeid": "RepLarryBucshon" + }, + "phone": "202-225-4636", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "IN", + "title": "Rep.", + "title_long": "Representative", + "website": "https://bucshon.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Texas's 26th congressional district", + "district": 26, + "enddate": "2023-01-03", + "extra": { + "address": "2161 Rayburn House Office Building Washington DC 20515-4326", + "office": "2161 Rayburn House Office Building", + "rss_url": "http://burgess.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "B001248", + "birthday": "1950-12-23", + "cspanid": 1003620, + "firstname": "Michael", + "gender": "male", + "gender_label": "Male", + "lastname": "Burgess", + "link": "https://www.govtrack.us/congress/members/michael_burgess/400052", + "middlename": "C.", + "name": "Rep. Michael Burgess [R-TX26]", + "namemod": "", + "nickname": "", + "osid": "N00025219", + "pvsid": "50120", + "sortname": "Burgess, Michael (Rep.) [R-TX26]", + "twitterid": "MichaelCBurgess", + "youtubeid": "michaelcburgessmd" + }, + "phone": "202-225-7772", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TX", + "title": "Rep.", + "title_long": "Representative", + "website": "https://burgess.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for North Carolina's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "2080 Rayburn House Office Building Washington DC 20515-3301", + "office": "2080 Rayburn House Office Building", + "rss_url": "http://butterfield.house.gov/rss/press-releases.xml/" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "B001251", + "birthday": "1947-04-27", + "cspanid": 1013540, + "firstname": "George", + "gender": "male", + "gender_label": "Male", + "lastname": "Butterfield", + "link": "https://www.govtrack.us/congress/members/george_butterfield/400616", + "middlename": "Kenneth", + "name": "Rep. George “G.K.” Butterfield [D-NC1]", + "namemod": "Jr.", + "nickname": "G.K.", + "osid": "N00027035", + "pvsid": "41077", + "sortname": "Butterfield, George “G.K.” (Rep.) [D-NC1]", + "twitterid": "GKButterfield", + "youtubeid": "GKBNC01" + }, + "phone": "202-225-3101", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NC", + "title": "Rep.", + "title_long": "Representative", + "website": "https://butterfield.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 42nd congressional district", + "district": 42, + "enddate": "2023-01-03", + "extra": { + "address": "2205 Rayburn House Office Building Washington DC 20515-0542", + "office": "2205 Rayburn House Office Building", + "rss_url": "http://calvert.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "C000059", + "birthday": "1953-06-08", + "cspanid": 26709, + "firstname": "Ken", + "gender": "male", + "gender_label": "Male", + "lastname": "Calvert", + "link": "https://www.govtrack.us/congress/members/ken_calvert/400057", + "middlename": "S.", + "name": "Rep. Ken Calvert [R-CA42]", + "namemod": "", + "nickname": "", + "osid": "N00007099", + "pvsid": "26777", + "sortname": "Calvert, Ken (Rep.) [R-CA42]", + "twitterid": "KenCalvert", + "youtubeid": "RepKenCalvert" + }, + "phone": "202-225-1986", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://calvert.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Indiana's 7th congressional district", + "district": 7, + "enddate": "2023-01-03", + "extra": { + "address": "2135 Rayburn House Office Building Washington DC 20515-1407", + "office": "2135 Rayburn House Office Building", + "rss_url": "http://carson.house.gov/index.php?option=com_bca-rss-syndicator&feed_id=1" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "C001072", + "birthday": "1974-10-16", + "cspanid": 1027364, + "firstname": "André", + "gender": "male", + "gender_label": "Male", + "lastname": "Carson", + "link": "https://www.govtrack.us/congress/members/andre_carson/412258", + "middlename": "", + "name": "Rep. André Carson [D-IN7]", + "namemod": "", + "nickname": "", + "osid": "N00029513", + "pvsid": "84917", + "sortname": "Carson, André (Rep.) [D-IN7]", + "twitterid": "RepAndreCarson", + "youtubeid": "repandrecarson" + }, + "phone": "202-225-4011", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "IN", + "title": "Rep.", + "title_long": "Representative", + "website": "https://carson.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Texas's 31st congressional district", + "district": 31, + "enddate": "2023-01-03", + "extra": { + "address": "2208 Rayburn House Office Building Washington DC 20515-4331", + "office": "2208 Rayburn House Office Building", + "rss_url": "http://carter.house.gov/common/rss/?rss=40" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "C001051", + "birthday": "1941-11-06", + "cspanid": 1004257, + "firstname": "John", + "gender": "male", + "gender_label": "Male", + "lastname": "Carter", + "link": "https://www.govtrack.us/congress/members/john_carter/400068", + "middlename": "R.", + "name": "Rep. John Carter [R-TX31]", + "namemod": "", + "nickname": "", + "osid": "N00025095", + "pvsid": "49296", + "sortname": "Carter, John (Rep.) [R-TX31]", + "twitterid": "JudgeCarter", + "youtubeid": "repjohncarter" + }, + "phone": "202-225-3864", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TX", + "title": "Rep.", + "title_long": "Representative", + "website": "https://carter.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Florida's 14th congressional district", + "district": 14, + "enddate": "2023-01-03", + "extra": { + "address": "2052 Rayburn House Office Building Washington DC 20515-0914", + "office": "2052 Rayburn House Office Building", + "rss_url": "http://castor.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "C001066", + "birthday": "1966-08-20", + "cspanid": 1022874, + "firstname": "Kathy", + "gender": "female", + "gender_label": "Female", + "lastname": "Castor", + "link": "https://www.govtrack.us/congress/members/kathy_castor/412195", + "middlename": "", + "name": "Rep. Kathy Castor [D-FL14]", + "namemod": "", + "nickname": "", + "osid": "N00027514", + "pvsid": "53825", + "sortname": "Castor, Kathy (Rep.) [D-FL14]", + "twitterid": "USRepKCastor", + "youtubeid": "RepKathyCastor" + }, + "phone": "202-225-3376", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "FL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://castor.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Ohio's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "2408 Rayburn House Office Building Washington DC 20515-3501", + "office": "2408 Rayburn House Office Building", + "rss_url": "http://chabot.house.gov/common/rss/index.cfm?rss=49" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "C000266", + "birthday": "1953-01-22", + "cspanid": 36705, + "firstname": "Steve", + "gender": "male", + "gender_label": "Male", + "lastname": "Chabot", + "link": "https://www.govtrack.us/congress/members/steve_chabot/400071", + "middlename": "J.", + "name": "Rep. Steve Chabot [R-OH1]", + "namemod": "", + "nickname": "", + "osid": "N00003689", + "pvsid": "21790", + "sortname": "Chabot, Steve (Rep.) [R-OH1]", + "twitterid": "RepSteveChabot", + "youtubeid": "congressmanchabot" + }, + "phone": "202-225-2216", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "OH", + "title": "Rep.", + "title_long": "Representative", + "website": "https://chabot.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 27th congressional district", + "district": 27, + "enddate": "2023-01-03", + "extra": { + "address": "2423 Rayburn House Office Building Washington DC 20515-0527", + "office": "2423 Rayburn House Office Building", + "rss_url": "http://chu.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "C001080", + "birthday": "1953-07-07", + "cspanid": 92573, + "firstname": "Judy", + "gender": "female", + "gender_label": "Female", + "lastname": "Chu", + "link": "https://www.govtrack.us/congress/members/judy_chu/412379", + "middlename": "M.", + "name": "Rep. Judy Chu [D-CA27]", + "namemod": "", + "nickname": "", + "osid": "N00030600", + "pvsid": "16539", + "sortname": "Chu, Judy (Rep.) [D-CA27]", + "twitterid": "RepJudyChu", + "youtubeid": "RepJudyChu" + }, + "phone": "202-225-5464", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://chu.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Rhode Island's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "2233 Rayburn House Office Building Washington DC 20515-3901", + "office": "2233 Rayburn House Office Building", + "rss_url": "http://cicilline.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "C001084", + "birthday": "1961-07-15", + "cspanid": 1033865, + "firstname": "David", + "gender": "male", + "gender_label": "Male", + "lastname": "Cicilline", + "link": "https://www.govtrack.us/congress/members/david_cicilline/412470", + "middlename": "N.", + "name": "Rep. David Cicilline [D-RI1]", + "namemod": "", + "nickname": "", + "osid": "N00032019", + "pvsid": "7349", + "sortname": "Cicilline, David (Rep.) [D-RI1]", + "twitterid": "RepCicilline", + "youtubeid": "RepDavidCicilline" + }, + "phone": "202-225-4911", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "RI", + "title": "Rep.", + "title_long": "Representative", + "website": "https://cicilline.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New York's 9th congressional district", + "district": 9, + "enddate": "2023-01-03", + "extra": { + "address": "2058 Rayburn House Office Building Washington DC 20515-3209", + "office": "2058 Rayburn House Office Building", + "rss_url": "http://clarke.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "C001067", + "birthday": "1964-11-21", + "cspanid": 1022875, + "firstname": "Yvette", + "gender": "female", + "gender_label": "Female", + "lastname": "Clarke", + "link": "https://www.govtrack.us/congress/members/yvette_clarke/412221", + "middlename": "D.", + "name": "Rep. Yvette Clarke [D-NY9]", + "namemod": "", + "nickname": "", + "osid": "N00026961", + "pvsid": "44741", + "sortname": "Clarke, Yvette (Rep.) [D-NY9]", + "twitterid": "RepYvetteClarke", + "youtubeid": "repyvetteclarke" + }, + "phone": "202-225-6231", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NY", + "title": "Rep.", + "title_long": "Representative", + "website": "https://clarke.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Missouri's 5th congressional district", + "district": 5, + "enddate": "2023-01-03", + "extra": { + "address": "2335 Rayburn House Office Building Washington DC 20515-2505", + "office": "2335 Rayburn House Office Building", + "rss_url": "http://cleaver.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "C001061", + "birthday": "1944-10-26", + "cspanid": 10933, + "firstname": "Emanuel", + "gender": "male", + "gender_label": "Male", + "lastname": "Cleaver", + "link": "https://www.govtrack.us/congress/members/emanuel_cleaver/400639", + "middlename": "", + "name": "Rep. Emanuel Cleaver [D-MO5]", + "namemod": "II", + "nickname": "", + "osid": "N00026790", + "pvsid": "39507", + "sortname": "Cleaver, Emanuel (Rep.) [D-MO5]", + "twitterid": "RepCleaver", + "youtubeid": "repcleaver" + }, + "phone": "202-225-4535", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MO", + "title": "Rep.", + "title_long": "Representative", + "website": "https://cleaver.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for South Carolina's 6th congressional district", + "district": 6, + "enddate": "2023-01-03", + "extra": { + "address": "274 Cannon House Office Building Washington DC 20515-4006", + "office": "274 Cannon House Office Building", + "rss_url": "http://clyburn.house.gov/rss.xml" + }, + "leadership_title": "House Majority Whip", + "party": "Democrat", + "person": { + "bioguideid": "C000537", + "birthday": "1940-07-21", + "cspanid": 21607, + "firstname": "James", + "gender": "male", + "gender_label": "Male", + "lastname": "Clyburn", + "link": "https://www.govtrack.us/congress/members/james_clyburn/400075", + "middlename": "E.", + "name": "Rep. James “Jim” Clyburn [D-SC6]", + "namemod": "", + "nickname": "Jim", + "osid": "N00002408", + "pvsid": "27066", + "sortname": "Clyburn, James “Jim” (Rep.) [D-SC6]", + "twitterid": "WhipClyburn", + "youtubeid": "repjamesclyburn" + }, + "phone": "202-225-3315", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "SC", + "title": "Rep.", + "title_long": "Representative", + "website": "https://clyburn.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Tennessee's 9th congressional district", + "district": 9, + "enddate": "2023-01-03", + "extra": { + "address": "2104 Rayburn House Office Building Washington DC 20515-4209", + "office": "2104 Rayburn House Office Building", + "rss_url": "http://cohen.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "C001068", + "birthday": "1949-05-24", + "cspanid": 1022876, + "firstname": "Steve", + "gender": "male", + "gender_label": "Male", + "lastname": "Cohen", + "link": "https://www.govtrack.us/congress/members/steve_cohen/412236", + "middlename": "", + "name": "Rep. Steve Cohen [D-TN9]", + "namemod": "", + "nickname": "", + "osid": "N00003225", + "pvsid": "24340", + "sortname": "Cohen, Steve (Rep.) [D-TN9]", + "twitterid": "RepCohen", + "youtubeid": "repcohen" + }, + "phone": "202-225-3265", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TN", + "title": "Rep.", + "title_long": "Representative", + "website": "https://cohen.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Oklahoma's 4th congressional district", + "district": 4, + "enddate": "2023-01-03", + "extra": { + "address": "2207 Rayburn House Office Building Washington DC 20515-3604", + "office": "2207 Rayburn House Office Building", + "rss_url": "http://cole.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "C001053", + "birthday": "1949-04-28", + "cspanid": 1003609, + "firstname": "Tom", + "gender": "male", + "gender_label": "Male", + "lastname": "Cole", + "link": "https://www.govtrack.us/congress/members/tom_cole/400077", + "middlename": "", + "name": "Rep. Tom Cole [R-OK4]", + "namemod": "", + "nickname": "", + "osid": "N00025726", + "pvsid": "46034", + "sortname": "Cole, Tom (Rep.) [R-OK4]", + "twitterid": "TomColeOK04", + "youtubeid": "reptomcole" + }, + "phone": "202-225-6165", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "OK", + "title": "Rep.", + "title_long": "Representative", + "website": "https://cole.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Virginia's 11th congressional district", + "district": 11, + "enddate": "2023-01-03", + "extra": { + "address": "2238 Rayburn House Office Building Washington DC 20515-4611", + "office": "2238 Rayburn House Office Building", + "rss_url": "http://connolly.house.gov/common/rss//index.cfm?rss=44" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "C001078", + "birthday": "1950-03-30", + "cspanid": 1015936, + "firstname": "Gerald", + "gender": "male", + "gender_label": "Male", + "lastname": "Connolly", + "link": "https://www.govtrack.us/congress/members/gerald_connolly/412272", + "middlename": "E.", + "name": "Rep. Gerald Connolly [D-VA11]", + "namemod": "", + "nickname": "", + "osid": "N00029891", + "pvsid": "95078", + "sortname": "Connolly, Gerald (Rep.) [D-VA11]", + "twitterid": "GerryConnolly", + "youtubeid": "repconnolly" + }, + "phone": "202-225-1492", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "VA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://connolly.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Tennessee's 5th congressional district", + "district": 5, + "enddate": "2023-01-03", + "extra": { + "address": "1536 Longworth House Office Building Washington DC 20515-4205", + "office": "1536 Longworth House Office Building", + "rss_url": "http://cooper.house.gov/index.php?format=feed&type=rss" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "C000754", + "birthday": "1954-06-19", + "cspanid": 1201, + "firstname": "Jim", + "gender": "male", + "gender_label": "Male", + "lastname": "Cooper", + "link": "https://www.govtrack.us/congress/members/jim_cooper/400081", + "middlename": "", + "name": "Rep. Jim Cooper [D-TN5]", + "namemod": "", + "nickname": "", + "osid": "N00003132", + "pvsid": "48891", + "sortname": "Cooper, Jim (Rep.) [D-TN5]", + "twitterid": "RepJimCooper", + "youtubeid": "RepJimCooper" + }, + "phone": "202-225-4311", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TN", + "title": "Rep.", + "title_long": "Representative", + "website": "https://cooper.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 16th congressional district", + "district": 16, + "enddate": "2023-01-03", + "extra": { + "address": "2081 Rayburn House Office Building Washington DC 20515-0516", + "office": "2081 Rayburn House Office Building", + "rss_url": "http://costa.house.gov/index.php?format=feed&type=rss" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "C001059", + "birthday": "1952-04-13", + "cspanid": 19599, + "firstname": "Jim", + "gender": "male", + "gender_label": "Male", + "lastname": "Costa", + "link": "https://www.govtrack.us/congress/members/jim_costa/400618", + "middlename": "", + "name": "Rep. Jim Costa [D-CA16]", + "namemod": "", + "nickname": "", + "osid": "N00026341", + "pvsid": "3577", + "sortname": "Costa, Jim (Rep.) [D-CA16]", + "twitterid": "RepJimCosta", + "youtubeid": "RepJimCostaCA20" + }, + "phone": "202-225-3341", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://costa.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Connecticut's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "2449 Rayburn House Office Building Washington DC 20515-0702", + "office": "2449 Rayburn House Office Building", + "rss_url": "http://courtney.house.gov/index.php?format=feed&type=rss" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "C001069", + "birthday": "1953-04-06", + "cspanid": 1021284, + "firstname": "Joe", + "gender": "male", + "gender_label": "Male", + "lastname": "Courtney", + "link": "https://www.govtrack.us/congress/members/joe_courtney/412193", + "middlename": "", + "name": "Rep. Joe Courtney [D-CT2]", + "namemod": "", + "nickname": "", + "osid": "N00024842", + "pvsid": "30333", + "sortname": "Courtney, Joe (Rep.) [D-CT2]", + "twitterid": "RepJoeCourtney", + "youtubeid": "repcourtney" + }, + "phone": "202-225-2076", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CT", + "title": "Rep.", + "title_long": "Representative", + "website": "https://courtney.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Arkansas's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "2422 Rayburn House Office Building Washington DC 20515-0401", + "office": "2422 Rayburn House Office Building", + "rss_url": "http://crawford.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "C001087", + "birthday": "1966-01-22", + "cspanid": 623259, + "firstname": "Eric", + "gender": "male", + "gender_label": "Male", + "lastname": "Crawford", + "link": "https://www.govtrack.us/congress/members/eric_crawford/412400", + "middlename": "A.", + "name": "Rep. Eric “Rick” Crawford [R-AR1]", + "namemod": "", + "nickname": "Rick", + "osid": "N00030770", + "pvsid": "119208", + "sortname": "Crawford, Eric “Rick” (Rep.) [R-AR1]", + "twitterid": "RepRickCrawford", + "youtubeid": "RepRickCrawford" + }, + "phone": "202-225-4076", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "AR", + "title": "Rep.", + "title_long": "Representative", + "website": "https://crawford.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Texas's 28th congressional district", + "district": 28, + "enddate": "2023-01-03", + "extra": { + "address": "2372 Rayburn House Office Building Washington DC 20515-4328", + "office": "2372 Rayburn House Office Building", + "rss_url": "http://cuellar.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "C001063", + "birthday": "1955-09-19", + "cspanid": 1013062, + "firstname": "Henry", + "gender": "male", + "gender_label": "Male", + "lastname": "Cuellar", + "link": "https://www.govtrack.us/congress/members/henry_cuellar/400657", + "middlename": "", + "name": "Rep. Henry Cuellar [D-TX28]", + "namemod": "", + "nickname": "", + "osid": "N00024978", + "pvsid": "5486", + "sortname": "Cuellar, Henry (Rep.) [D-TX28]", + "twitterid": "RepCuellar", + "youtubeid": "henrycuellar" + }, + "phone": "202-225-1640", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TX", + "title": "Rep.", + "title_long": "Representative", + "website": "https://cuellar.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Illinois's 7th congressional district", + "district": 7, + "enddate": "2023-01-03", + "extra": { + "address": "2159 Rayburn House Office Building Washington DC 20515-1307", + "office": "2159 Rayburn House Office Building", + "rss_url": "http://davis.house.gov/index.php?format=feed&type=rss" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "D000096", + "birthday": "1941-09-06", + "cspanid": 44325, + "firstname": "Danny", + "gender": "male", + "gender_label": "Male", + "lastname": "Davis", + "link": "https://www.govtrack.us/congress/members/danny_davis/400093", + "middlename": "K.", + "name": "Rep. Danny Davis [D-IL7]", + "namemod": "", + "nickname": "", + "osid": "N00004884", + "pvsid": "233", + "sortname": "Davis, Danny (Rep.) [D-IL7]", + "twitterid": "RepDannyDavis", + "youtubeid": "dannykdavis07" + }, + "phone": "202-225-5006", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "IL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://davis.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Oregon's 4th congressional district", + "district": 4, + "enddate": "2023-01-03", + "extra": { + "address": "2134 Rayburn House Office Building Washington DC 20515-3704", + "office": "2134 Rayburn House Office Building", + "rss_url": "http://www.defazio.house.gov/index.php?format=feed&type=rss" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "D000191", + "birthday": "1947-05-27", + "cspanid": 6068, + "firstname": "Peter", + "gender": "male", + "gender_label": "Male", + "lastname": "DeFazio", + "link": "https://www.govtrack.us/congress/members/peter_defazio/400100", + "middlename": "A.", + "name": "Rep. Peter DeFazio [D-OR4]", + "namemod": "", + "nickname": "", + "osid": "N00007781", + "pvsid": "27037", + "sortname": "DeFazio, Peter (Rep.) [D-OR4]", + "twitterid": "RepPeterDeFazio", + "youtubeid": "PeterDeFazio" + }, + "phone": "202-225-6416", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "OR", + "title": "Rep.", + "title_long": "Representative", + "website": "https://defazio.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Colorado's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "2111 Rayburn House Office Building Washington DC 20515-0601", + "office": "2111 Rayburn House Office Building", + "rss_url": "http://degette.house.gov/index.php?option=com_ninjarsssyndicator&feed_id=1&format=raw" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "D000197", + "birthday": "1957-07-29", + "cspanid": 90293, + "firstname": "Diana", + "gender": "female", + "gender_label": "Female", + "lastname": "DeGette", + "link": "https://www.govtrack.us/congress/members/diana_degette/400101", + "middlename": "L.", + "name": "Rep. Diana DeGette [D-CO1]", + "namemod": "", + "nickname": "", + "osid": "N00006134", + "pvsid": "561", + "sortname": "DeGette, Diana (Rep.) [D-CO1]", + "twitterid": "RepDianaDeGette", + "youtubeid": "RepDianaDeGette" + }, + "phone": "202-225-4431", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CO", + "title": "Rep.", + "title_long": "Representative", + "website": "https://degette.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Connecticut's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "2413 Rayburn House Office Building Washington DC 20515-0703", + "office": "2413 Rayburn House Office Building", + "rss_url": "http://delauro.house.gov/index.php?format=feed&type=rss" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "D000216", + "birthday": "1943-03-02", + "cspanid": 19040, + "firstname": "Rosa", + "gender": "female", + "gender_label": "Female", + "lastname": "DeLauro", + "link": "https://www.govtrack.us/congress/members/rosa_delauro/400103", + "middlename": "L.", + "name": "Rep. Rosa DeLauro [D-CT3]", + "namemod": "", + "nickname": "", + "osid": "N00000615", + "pvsid": "26788", + "sortname": "DeLauro, Rosa (Rep.) [D-CT3]", + "twitterid": "RosaDeLauro", + "youtubeid": "rosadelauro" + }, + "phone": "202-225-3661", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CT", + "title": "Rep.", + "title_long": "Representative", + "website": "https://delauro.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Tennessee's 4th congressional district", + "district": 4, + "enddate": "2023-01-03", + "extra": { + "address": "2304 Rayburn House Office Building Washington DC 20515-4204", + "office": "2304 Rayburn House Office Building", + "rss_url": "http://desjarlais.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "D000616", + "birthday": "1964-02-21", + "cspanid": 623517, + "firstname": "Scott", + "gender": "male", + "gender_label": "Male", + "lastname": "DesJarlais", + "link": "https://www.govtrack.us/congress/members/scott_desjarlais/412477", + "middlename": "", + "name": "Rep. Scott DesJarlais [R-TN4]", + "namemod": "", + "nickname": "", + "osid": "N00030957", + "pvsid": "123473", + "sortname": "DesJarlais, Scott (Rep.) [R-TN4]", + "twitterid": "DesJarlaisTN04", + "youtubeid": "ScottDesJarlaisTN04" + }, + "phone": "202-225-6831", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TN", + "title": "Rep.", + "title_long": "Representative", + "website": "https://desjarlais.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Florida's 22nd congressional district", + "district": 22, + "enddate": "2023-01-03", + "extra": { + "address": "2323 Rayburn House Office Building Washington DC 20515-0922", + "office": "2323 Rayburn House Office Building", + "rss_url": "http://teddeutch.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "D000610", + "birthday": "1966-05-07", + "cspanid": 9267613, + "firstname": "Theodore", + "gender": "male", + "gender_label": "Male", + "lastname": "Deutch", + "link": "https://www.govtrack.us/congress/members/theodore_deutch/412385", + "middlename": "E.", + "name": "Rep. Theodore “Ted” Deutch [D-FL22]", + "namemod": "", + "nickname": "Ted", + "osid": "N00031317", + "pvsid": "67151", + "sortname": "Deutch, Theodore “Ted” (Rep.) [D-FL22]", + "twitterid": "RepTedDeutch", + "youtubeid": "congressmanteddeutch" + }, + "phone": "202-225-3001", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "FL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://teddeutch.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Florida's 25th congressional district", + "district": 25, + "enddate": "2023-01-03", + "extra": { + "address": "374 Cannon House Office Building Washington DC 20515-0925", + "office": "374 Cannon House Office Building", + "rss_url": "http://mariodiazbalart.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "D000600", + "birthday": "1961-09-25", + "cspanid": 1003562, + "firstname": "Mario", + "gender": "male", + "gender_label": "Male", + "lastname": "Diaz-Balart", + "link": "https://www.govtrack.us/congress/members/mario_diaz_balart/400108", + "middlename": "", + "name": "Rep. Mario Diaz-Balart [R-FL25]", + "namemod": "", + "nickname": "", + "osid": "N00025337", + "pvsid": "24312", + "sortname": "Diaz-Balart, Mario (Rep.) [R-FL25]", + "twitterid": "MarioDB", + "youtubeid": "MarioDiazBalart" + }, + "phone": "202-225-4211", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "FL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://mariodiazbalart.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Texas's 35th congressional district", + "district": 35, + "enddate": "2023-01-03", + "extra": { + "address": "2307 Rayburn House Office Building Washington DC 20515-4335", + "office": "2307 Rayburn House Office Building", + "rss_url": "http://doggett.house.gov/index.php/component/ninjarsssyndicator/?feed_id=1&format=raw" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "D000399", + "birthday": "1946-10-06", + "cspanid": 36810, + "firstname": "Lloyd", + "gender": "male", + "gender_label": "Male", + "lastname": "Doggett", + "link": "https://www.govtrack.us/congress/members/lloyd_doggett/400111", + "middlename": "A.", + "name": "Rep. Lloyd Doggett [D-TX35]", + "namemod": "", + "nickname": "", + "osid": "N00006023", + "pvsid": "21689", + "sortname": "Doggett, Lloyd (Rep.) [D-TX35]", + "twitterid": "RepLloydDoggett", + "youtubeid": "doggett" + }, + "phone": "202-225-4865", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TX", + "title": "Rep.", + "title_long": "Representative", + "website": "https://doggett.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Pennsylvania's 18th congressional district", + "district": 18, + "enddate": "2023-01-03", + "extra": { + "address": "270 Cannon House Office Building Washington DC 20515-3818", + "office": "270 Cannon House Office Building", + "rss_url": "http://doyle.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "D000482", + "birthday": "1953-08-05", + "cspanid": 36774, + "firstname": "Michael", + "gender": "male", + "gender_label": "Male", + "lastname": "Doyle", + "link": "https://www.govtrack.us/congress/members/michael_doyle/400114", + "middlename": "F.", + "name": "Rep. Michael Doyle [D-PA18]", + "namemod": "", + "nickname": "", + "osid": "N00001373", + "pvsid": "21853", + "sortname": "Doyle, Michael (Rep.) [D-PA18]", + "twitterid": "USRepMikeDoyle", + "youtubeid": "CongressmanDoyle" + }, + "phone": "202-225-2135", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "PA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://doyle.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for South Carolina's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "2229 Rayburn House Office Building Washington DC 20515-4003", + "office": "2229 Rayburn House Office Building", + "rss_url": "http://jeffduncan.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "D000615", + "birthday": "1966-01-07", + "cspanid": 62713, + "firstname": "Jeff", + "gender": "male", + "gender_label": "Male", + "lastname": "Duncan", + "link": "https://www.govtrack.us/congress/members/jeff_duncan/412472", + "middlename": "", + "name": "Rep. Jeff Duncan [R-SC3]", + "namemod": "", + "nickname": "", + "osid": "N00030752", + "pvsid": "47967", + "sortname": "Duncan, Jeff (Rep.) [R-SC3]", + "twitterid": "RepJeffDuncan", + "youtubeid": "congjeffduncan" + }, + "phone": "202-225-5301", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "SC", + "title": "Rep.", + "title_long": "Representative", + "website": "https://jeffduncan.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 18th congressional district", + "district": 18, + "enddate": "2023-01-03", + "extra": { + "address": "272 Cannon House Office Building Washington DC 20515-0518", + "office": "272 Cannon House Office Building", + "rss_url": "http://eshoo.house.gov/index.php?format=feed&type=rss" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "E000215", + "birthday": "1942-12-13", + "cspanid": 26130, + "firstname": "Anna", + "gender": "female", + "gender_label": "Female", + "lastname": "Eshoo", + "link": "https://www.govtrack.us/congress/members/anna_eshoo/400124", + "middlename": "G.", + "name": "Rep. Anna Eshoo [D-CA18]", + "namemod": "", + "nickname": "", + "osid": "N00007335", + "pvsid": "26741", + "sortname": "Eshoo, Anna (Rep.) [D-CA18]", + "twitterid": "RepAnnaEshoo", + "youtubeid": "RepAnnaEshoo" + }, + "phone": "202-225-8104", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://eshoo.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Tennessee's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "462 Cannon House Office Building Washington DC 20515-4203", + "office": "462 Cannon House Office Building", + "rss_url": "http://fleischmann.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "F000459", + "birthday": "1962-10-11", + "cspanid": 95146, + "firstname": "Charles", + "gender": "male", + "gender_label": "Male", + "lastname": "Fleischmann", + "link": "https://www.govtrack.us/congress/members/charles_fleischmann/412476", + "middlename": "J.", + "name": "Rep. Charles “Chuck” Fleischmann [R-TN3]", + "namemod": "", + "nickname": "Chuck", + "osid": "N00030815", + "pvsid": "123456", + "sortname": "Fleischmann, Charles “Chuck” (Rep.) [R-TN3]", + "twitterid": "RepChuck", + "youtubeid": "repchuck" + }, + "phone": "202-225-3271", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TN", + "title": "Rep.", + "title_long": "Representative", + "website": "https://fleischmann.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Nebraska's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "1514 Longworth House Office Building Washington DC 20515-2701", + "office": "1514 Longworth House Office Building", + "rss_url": "http://fortenberry.house.gov/index.php?format=feed&type=rss" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "F000449", + "birthday": "1960-12-27", + "cspanid": 1013049, + "firstname": "Jeff", + "gender": "male", + "gender_label": "Male", + "lastname": "Fortenberry", + "link": "https://www.govtrack.us/congress/members/jeff_fortenberry/400640", + "middlename": "Lane", + "name": "Rep. Jeff Fortenberry [R-NE1]", + "namemod": "", + "nickname": "", + "osid": "N00026631", + "pvsid": "41929", + "sortname": "Fortenberry, Jeff (Rep.) [R-NE1]", + "twitterid": "JeffFortenberry", + "youtubeid": "JeffFortenberry" + }, + "phone": "202-225-4806", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NE", + "title": "Rep.", + "title_long": "Representative", + "website": "https://fortenberry.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for North Carolina's 5th congressional district", + "district": 5, + "enddate": "2023-01-03", + "extra": { + "address": "2462 Rayburn House Office Building Washington DC 20515-3305", + "office": "2462 Rayburn House Office Building", + "rss_url": "http://foxx.house.gov/common/rss/?rss=55" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "F000450", + "birthday": "1943-06-29", + "cspanid": 1013052, + "firstname": "Virginia", + "gender": "female", + "gender_label": "Female", + "lastname": "Foxx", + "link": "https://www.govtrack.us/congress/members/virginia_foxx/400643", + "middlename": "", + "name": "Rep. Virginia Foxx [R-NC5]", + "namemod": "", + "nickname": "", + "osid": "N00026166", + "pvsid": "6051", + "sortname": "Foxx, Virginia (Rep.) [R-NC5]", + "twitterid": "VirginiaFoxx", + "youtubeid": "repvirginiafoxx" + }, + "phone": "202-225-2071", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NC", + "title": "Rep.", + "title_long": "Representative", + "website": "https://foxx.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "2368 Rayburn House Office Building Washington DC 20515-0503", + "office": "2368 Rayburn House Office Building", + "rss_url": "http://garamendi.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "G000559", + "birthday": "1945-01-24", + "cspanid": 18413, + "firstname": "John", + "gender": "male", + "gender_label": "Male", + "lastname": "Garamendi", + "link": "https://www.govtrack.us/congress/members/john_garamendi/412382", + "middlename": "", + "name": "Rep. John Garamendi [D-CA3]", + "namemod": "", + "nickname": "", + "osid": "N00030856", + "pvsid": "29664", + "sortname": "Garamendi, John (Rep.) [D-CA3]", + "twitterid": "RepGaramendi", + "youtubeid": "garamendiCA10" + }, + "phone": "202-225-1880", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://garamendi.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Ohio's 7th congressional district", + "district": 7, + "enddate": "2023-01-03", + "extra": { + "address": "2217 Rayburn House Office Building Washington DC 20515-3507", + "office": "2217 Rayburn House Office Building", + "rss_url": "http://gibbs.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "G000563", + "birthday": "1954-06-14", + "cspanid": 1033844, + "firstname": "Bob", + "gender": "male", + "gender_label": "Male", + "lastname": "Gibbs", + "link": "https://www.govtrack.us/congress/members/bob_gibbs/412463", + "middlename": "", + "name": "Rep. Bob Gibbs [R-OH7]", + "namemod": "", + "nickname": "", + "osid": "N00031128", + "pvsid": "45466", + "sortname": "Gibbs, Bob (Rep.) [R-OH7]", + "twitterid": "RepBobGibbs", + "youtubeid": "RepBobGibbs" + }, + "phone": "202-225-6265", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "OH", + "title": "Rep.", + "title_long": "Representative", + "website": "https://gibbs.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Texas's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "2269 Rayburn House Office Building Washington DC 20515-4301", + "office": "2269 Rayburn House Office Building", + "rss_url": "http://gohmert.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "G000552", + "birthday": "1953-08-18", + "cspanid": 1011394, + "firstname": "Louie", + "gender": "male", + "gender_label": "Male", + "lastname": "Gohmert", + "link": "https://www.govtrack.us/congress/members/louie_gohmert/400651", + "middlename": "B.", + "name": "Rep. Louie Gohmert [R-TX1]", + "namemod": "Jr.", + "nickname": "", + "osid": "N00026148", + "pvsid": "50029", + "sortname": "Gohmert, Louie (Rep.) [R-TX1]", + "twitterid": "RepLouieGohmert", + "youtubeid": "GohmertTX01" + }, + "phone": "202-225-3035", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TX", + "title": "Rep.", + "title_long": "Representative", + "website": "https://gohmert.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Arizona's 4th congressional district", + "district": 4, + "enddate": "2023-01-03", + "extra": { + "address": "2057 Rayburn House Office Building Washington DC 20515-0304", + "office": "2057 Rayburn House Office Building", + "rss_url": "http://gosar.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "G000565", + "birthday": "1958-11-22", + "cspanid": 62470, + "firstname": "Paul", + "gender": "male", + "gender_label": "Male", + "lastname": "Gosar", + "link": "https://www.govtrack.us/congress/members/paul_gosar/412397", + "middlename": "A.", + "name": "Rep. Paul Gosar [R-AZ4]", + "namemod": "", + "nickname": "", + "osid": "N00030771", + "pvsid": "123491", + "sortname": "Gosar, Paul (Rep.) [R-AZ4]", + "twitterid": "RepGosar", + "youtubeid": "repgosar" + }, + "phone": "202-225-2315", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "AZ", + "title": "Rep.", + "title_long": "Representative", + "website": "https://gosar.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Texas's 12th congressional district", + "district": 12, + "enddate": "2023-01-03", + "extra": { + "address": "1026 Longworth House Office Building Washington DC 20515-4312", + "office": "1026 Longworth House Office Building", + "rss_url": "http://kaygranger.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "G000377", + "birthday": "1943-01-18", + "cspanid": 45709, + "firstname": "Kay", + "gender": "female", + "gender_label": "Female", + "lastname": "Granger", + "link": "https://www.govtrack.us/congress/members/kay_granger/400157", + "middlename": "", + "name": "Rep. Kay Granger [R-TX12]", + "namemod": "", + "nickname": "", + "osid": "N00008799", + "pvsid": "334", + "sortname": "Granger, Kay (Rep.) [R-TX12]", + "twitterid": "RepKayGranger", + "youtubeid": "RepKayGranger" + }, + "phone": "202-225-5071", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TX", + "title": "Rep.", + "title_long": "Representative", + "website": "https://kaygranger.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Missouri's 6th congressional district", + "district": 6, + "enddate": "2023-01-03", + "extra": { + "address": "1135 Longworth House Office Building Washington DC 20515-2506", + "office": "1135 Longworth House Office Building", + "rss_url": "http://graves.house.gov/common/rss/index.cfm?rss=25" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "G000546", + "birthday": "1963-11-07", + "cspanid": 89873, + "firstname": "Sam", + "gender": "male", + "gender_label": "Male", + "lastname": "Graves", + "link": "https://www.govtrack.us/congress/members/sam_graves/400158", + "middlename": "B.", + "name": "Rep. Sam Graves [R-MO6]", + "namemod": "", + "nickname": "", + "osid": "N00013323", + "pvsid": "9425", + "sortname": "Graves, Sam (Rep.) [R-MO6]", + "twitterid": "RepSamGraves", + "youtubeid": null + }, + "phone": "202-225-7041", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MO", + "title": "Rep.", + "title_long": "Representative", + "website": "https://graves.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Texas's 9th congressional district", + "district": 9, + "enddate": "2023-01-03", + "extra": { + "address": "2347 Rayburn House Office Building Washington DC 20515-4309", + "office": "2347 Rayburn House Office Building", + "rss_url": "http://algreen.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "G000553", + "birthday": "1947-09-01", + "cspanid": 1012969, + "firstname": "Al", + "gender": "male", + "gender_label": "Male", + "lastname": "Green", + "link": "https://www.govtrack.us/congress/members/al_green/400653", + "middlename": "", + "name": "Rep. Al Green [D-TX9]", + "namemod": "", + "nickname": "", + "osid": "N00026686", + "pvsid": "49680", + "sortname": "Green, Al (Rep.) [D-TX9]", + "twitterid": "RepAlGreen", + "youtubeid": "RepAlGreen" + }, + "phone": "202-225-7508", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TX", + "title": "Rep.", + "title_long": "Representative", + "website": "https://algreen.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Virginia's 9th congressional district", + "district": 9, + "enddate": "2023-01-03", + "extra": { + "address": "2202 Rayburn House Office Building Washington DC 20515-4609", + "office": "2202 Rayburn House Office Building", + "rss_url": "http://morgangriffith.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "G000568", + "birthday": "1958-03-15", + "cspanid": 62766, + "firstname": "H.", + "gender": "male", + "gender_label": "Male", + "lastname": "Griffith", + "link": "https://www.govtrack.us/congress/members/morgan_griffith/412485", + "middlename": "Morgan", + "name": "Rep. Morgan Griffith [R-VA9]", + "namemod": "", + "nickname": "", + "osid": "N00032029", + "pvsid": "5148", + "sortname": "Griffith, Morgan (Rep.) [R-VA9]", + "twitterid": "RepMGriffith", + "youtubeid": "RepMorganGriffith" + }, + "phone": "202-225-3861", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "VA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://morgangriffith.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Arizona's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "1511 Longworth House Office Building Washington DC 20515-0303", + "office": "1511 Longworth House Office Building", + "rss_url": "http://grijalva.house.gov/common/rss/?rss=13" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "G000551", + "birthday": "1948-02-19", + "cspanid": 1003551, + "firstname": "Raúl", + "gender": "male", + "gender_label": "Male", + "lastname": "Grijalva", + "link": "https://www.govtrack.us/congress/members/raul_grijalva/400162", + "middlename": "M.", + "name": "Rep. Raúl Grijalva [D-AZ3]", + "namemod": "", + "nickname": "", + "osid": "N00025284", + "pvsid": "28253", + "sortname": "Grijalva, Raúl (Rep.) [D-AZ3]", + "twitterid": "RepraulGrijalva", + "youtubeid": "raulgrijalvaaz07" + }, + "phone": "202-225-2435", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "AZ", + "title": "Rep.", + "title_long": "Representative", + "website": "https://grijalva.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Kentucky's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "2434 Rayburn House Office Building Washington DC 20515-1702", + "office": "2434 Rayburn House Office Building", + "rss_url": "http://guthrie.house.gov/common/rss/?rss=24" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "G000558", + "birthday": "1964-02-18", + "cspanid": 1031343, + "firstname": "Brett", + "gender": "male", + "gender_label": "Male", + "lastname": "Guthrie", + "link": "https://www.govtrack.us/congress/members/brett_guthrie/412278", + "middlename": "", + "name": "Rep. Brett Guthrie [R-KY2]", + "namemod": "", + "nickname": "", + "osid": "N00029675", + "pvsid": "18829", + "sortname": "Guthrie, Brett (Rep.) [R-KY2]", + "twitterid": "RepGuthrie", + "youtubeid": "BrettGuthrie" + }, + "phone": "202-225-3501", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "KY", + "title": "Rep.", + "title_long": "Representative", + "website": "https://guthrie.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Maryland's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "2334 Rayburn House Office Building Washington DC 20515-2001", + "office": "2334 Rayburn House Office Building", + "rss_url": "http://harris.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "H001052", + "birthday": "1957-01-25", + "cspanid": 1033464, + "firstname": "Andy", + "gender": "male", + "gender_label": "Male", + "lastname": "Harris", + "link": "https://www.govtrack.us/congress/members/andy_harris/412434", + "middlename": "", + "name": "Rep. Andy Harris [R-MD1]", + "namemod": "", + "nickname": "", + "osid": "N00029147", + "pvsid": "19157", + "sortname": "Harris, Andy (Rep.) [R-MD1]", + "twitterid": "RepAndyHarrisMD", + "youtubeid": "RepAndyHarris" + }, + "phone": "202-225-5311", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MD", + "title": "Rep.", + "title_long": "Representative", + "website": "https://harris.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Missouri's 4th congressional district", + "district": 4, + "enddate": "2023-01-03", + "extra": { + "address": "2235 Rayburn House Office Building Washington DC 20515-2504", + "office": "2235 Rayburn House Office Building", + "rss_url": "http://hartzler.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "H001053", + "birthday": "1960-10-13", + "cspanid": 95050, + "firstname": "Vicky", + "gender": "female", + "gender_label": "Female", + "lastname": "Hartzler", + "link": "https://www.govtrack.us/congress/members/vicky_hartzler/412444", + "middlename": "", + "name": "Rep. Vicky Hartzler [R-MO4]", + "namemod": "", + "nickname": "", + "osid": "N00031005", + "pvsid": "8783", + "sortname": "Hartzler, Vicky (Rep.) [R-MO4]", + "twitterid": "RepHartzler", + "youtubeid": "repvickyhartzler" + }, + "phone": "202-225-2876", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MO", + "title": "Rep.", + "title_long": "Representative", + "website": "https://hartzler.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Washington's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "2352 Rayburn House Office Building Washington DC 20515-4703", + "office": "2352 Rayburn House Office Building", + "rss_url": "http://herrerabeutler.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "H001056", + "birthday": "1978-11-03", + "cspanid": 95198, + "firstname": "Jaime", + "gender": "female", + "gender_label": "Female", + "lastname": "Herrera Beutler", + "link": "https://www.govtrack.us/congress/members/jaime_herrera_beutler/412486", + "middlename": "", + "name": "Rep. Jaime Herrera Beutler [R-WA3]", + "namemod": "", + "nickname": "", + "osid": "N00031559", + "pvsid": "101907", + "sortname": "Herrera Beutler, Jaime (Rep.) [R-WA3]", + "twitterid": "HerreraBeutler", + "youtubeid": "RepHerreraBeutler" + }, + "phone": "202-225-3536", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "WA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://jhb.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New York's 26th congressional district", + "district": 26, + "enddate": "2023-01-03", + "extra": { + "address": "2459 Rayburn House Office Building Washington DC 20515-3226", + "office": "2459 Rayburn House Office Building", + "rss_url": "http://higgins.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "H001038", + "birthday": "1959-10-06", + "cspanid": 1013050, + "firstname": "Brian", + "gender": "male", + "gender_label": "Male", + "lastname": "Higgins", + "link": "https://www.govtrack.us/congress/members/brian_higgins/400641", + "middlename": "M.", + "name": "Rep. Brian Higgins [D-NY26]", + "namemod": "", + "nickname": "", + "osid": "N00027060", + "pvsid": "23127", + "sortname": "Higgins, Brian (Rep.) [D-NY26]", + "twitterid": "RepBrianHiggins", + "youtubeid": "CongressmanHiggins" + }, + "phone": "202-225-3306", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NY", + "title": "Rep.", + "title_long": "Representative", + "website": "https://higgins.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Connecticut's 4th congressional district", + "district": 4, + "enddate": "2023-01-03", + "extra": { + "address": "2137 Rayburn House Office Building Washington DC 20515-0704", + "office": "2137 Rayburn House Office Building", + "rss_url": "http://himes.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "H001047", + "birthday": "1966-07-05", + "cspanid": 1031341, + "firstname": "James", + "gender": "male", + "gender_label": "Male", + "lastname": "Himes", + "link": "https://www.govtrack.us/congress/members/james_himes/412282", + "middlename": "A.", + "name": "Rep. James Himes [D-CT4]", + "namemod": "", + "nickname": "", + "osid": "N00029070", + "pvsid": "106744", + "sortname": "Himes, James (Rep.) [D-CT4]", + "twitterid": "JAHimes", + "youtubeid": "congressmanhimes" + }, + "phone": "202-225-5541", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CT", + "title": "Rep.", + "title_long": "Representative", + "website": "https://himes.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Maryland's 5th congressional district", + "district": 5, + "enddate": "2023-01-03", + "extra": { + "address": "1705 Longworth House Office Building Washington DC 20515-2005", + "office": "1705 Longworth House Office Building", + "rss_url": "http://hoyer.house.gov/index.php?format=feed&type=rss" + }, + "leadership_title": "House Majority Leader", + "party": "Democrat", + "person": { + "bioguideid": "H000874", + "birthday": "1939-06-14", + "cspanid": 1919, + "firstname": "Steny", + "gender": "male", + "gender_label": "Male", + "lastname": "Hoyer", + "link": "https://www.govtrack.us/congress/members/steny_hoyer/400189", + "middlename": "H.", + "name": "Rep. Steny Hoyer [D-MD5]", + "namemod": "", + "nickname": "", + "osid": "N00001821", + "pvsid": "26890", + "sortname": "Hoyer, Steny (Rep.) [D-MD5]", + "twitterid": "LeaderHoyer", + "youtubeid": "LeaderHoyer" + }, + "phone": "202-225-4131", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MD", + "title": "Rep.", + "title_long": "Representative", + "website": "https://hoyer.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Michigan's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "2232 Rayburn House Office Building Washington DC 20515-2202", + "office": "2232 Rayburn House Office Building", + "rss_url": "http://huizenga.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "H001058", + "birthday": "1969-01-31", + "cspanid": 1033765, + "firstname": "Bill", + "gender": "male", + "gender_label": "Male", + "lastname": "Huizenga", + "link": "https://www.govtrack.us/congress/members/bill_huizenga/412437", + "middlename": "", + "name": "Rep. Bill Huizenga [R-MI2]", + "namemod": "", + "nickname": "", + "osid": "N00030673", + "pvsid": "38351", + "sortname": "Huizenga, Bill (Rep.) [R-MI2]", + "twitterid": "RepHuizenga", + "youtubeid": "RepHuizenga" + }, + "phone": "202-225-4401", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MI", + "title": "Rep.", + "title_long": "Representative", + "website": "https://huizenga.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Texas's 18th congressional district", + "district": 18, + "enddate": "2023-01-03", + "extra": { + "address": "2426 Rayburn House Office Building Washington DC 20515-4318", + "office": "2426 Rayburn House Office Building", + "rss_url": "http://jacksonlee.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "J000032", + "birthday": "1950-01-12", + "cspanid": 36819, + "firstname": "Sheila", + "gender": "female", + "gender_label": "Female", + "lastname": "Jackson Lee", + "link": "https://www.govtrack.us/congress/members/sheila_jackson_lee/400199", + "middlename": "", + "name": "Rep. Sheila Jackson Lee [D-TX18]", + "namemod": "", + "nickname": "", + "osid": "N00005818", + "pvsid": "21692", + "sortname": "Jackson Lee, Sheila (Rep.) [D-TX18]", + "twitterid": "JacksonLeeTX18", + "youtubeid": "TX18SJL" + }, + "phone": "202-225-3816", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TX", + "title": "Rep.", + "title_long": "Representative", + "website": "https://jacksonlee.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Ohio's 6th congressional district", + "district": 6, + "enddate": "2023-01-03", + "extra": { + "address": "2336 Rayburn House Office Building Washington DC 20515-3506", + "office": "2336 Rayburn House Office Building", + "rss_url": "http://billjohnson.house.gov/constituentservices/opendoorsschedule.htm" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "J000292", + "birthday": "1954-11-10", + "cspanid": 623472, + "firstname": "Bill", + "gender": "male", + "gender_label": "Male", + "lastname": "Johnson", + "link": "https://www.govtrack.us/congress/members/bill_johnson/412460", + "middlename": "", + "name": "Rep. Bill Johnson [R-OH6]", + "namemod": "", + "nickname": "", + "osid": "N00032088", + "pvsid": "120649", + "sortname": "Johnson, Bill (Rep.) [R-OH6]", + "twitterid": "RepBillJohnson", + "youtubeid": "RepBillJohnson" + }, + "phone": "202-225-5705", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "OH", + "title": "Rep.", + "title_long": "Representative", + "website": "https://billjohnson.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Texas's 30th congressional district", + "district": 30, + "enddate": "2023-01-03", + "extra": { + "address": "2306 Rayburn House Office Building Washington DC 20515-4330", + "office": "2306 Rayburn House Office Building", + "rss_url": "http://ebjohnson.house.gov/common/rss//index.cfm?rss=21" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "J000126", + "birthday": "1935-12-03", + "cspanid": 23352, + "firstname": "Eddie", + "gender": "female", + "gender_label": "Female", + "lastname": "Johnson", + "link": "https://www.govtrack.us/congress/members/eddie_johnson/400204", + "middlename": "Bernice", + "name": "Rep. Eddie Johnson [D-TX30]", + "namemod": "", + "nickname": "", + "osid": "N00008122", + "pvsid": "27098", + "sortname": "Johnson, Eddie (Rep.) [D-TX30]", + "twitterid": "RepEBJ", + "youtubeid": "RepEddieBJohnson" + }, + "phone": "202-225-8885", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TX", + "title": "Rep.", + "title_long": "Representative", + "website": "https://ebjohnson.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Georgia's 4th congressional district", + "district": 4, + "enddate": "2023-01-03", + "extra": { + "address": "2240 Rayburn House Office Building Washington DC 20515-1004", + "office": "2240 Rayburn House Office Building", + "rss_url": "http://hankjohnson.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "J000288", + "birthday": "1954-10-02", + "cspanid": 1020576, + "firstname": "Henry", + "gender": "male", + "gender_label": "Male", + "lastname": "Johnson", + "link": "https://www.govtrack.us/congress/members/henry_johnson/412199", + "middlename": "C.", + "name": "Rep. Henry “Hank” Johnson [D-GA4]", + "namemod": "Jr.", + "nickname": "Hank", + "osid": "N00027848", + "pvsid": "68070", + "sortname": "Johnson, Henry “Hank” (Rep.) [D-GA4]", + "twitterid": "RepHankJohnson", + "youtubeid": "RepHankJohnson" + }, + "phone": "202-225-1605", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "GA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://hankjohnson.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Ohio's 4th congressional district", + "district": 4, + "enddate": "2023-01-03", + "extra": { + "address": "2056 Rayburn House Office Building Washington DC 20515-3504", + "office": "2056 Rayburn House Office Building", + "rss_url": "http://jordan.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "J000289", + "birthday": "1964-02-17", + "cspanid": 1022879, + "firstname": "Jim", + "gender": "male", + "gender_label": "Male", + "lastname": "Jordan", + "link": "https://www.govtrack.us/congress/members/jim_jordan/412226", + "middlename": "", + "name": "Rep. Jim Jordan [R-OH4]", + "namemod": "", + "nickname": "", + "osid": "N00027894", + "pvsid": "8158", + "sortname": "Jordan, Jim (Rep.) [R-OH4]", + "twitterid": "Jim_Jordan", + "youtubeid": "RepJimJordan" + }, + "phone": "202-225-2676", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "OH", + "title": "Rep.", + "title_long": "Representative", + "website": "https://jordan.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Ohio's 9th congressional district", + "district": 9, + "enddate": "2023-01-03", + "extra": { + "address": "2186 Rayburn House Office Building Washington DC 20515-3509", + "office": "2186 Rayburn House Office Building", + "rss_url": "http://kaptur.house.gov/index.php?format=feed&type=rss" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "K000009", + "birthday": "1946-06-17", + "cspanid": 1458, + "firstname": "Marcy", + "gender": "female", + "gender_label": "Female", + "lastname": "Kaptur", + "link": "https://www.govtrack.us/congress/members/marcy_kaptur/400211", + "middlename": "", + "name": "Rep. Marcy Kaptur [D-OH9]", + "namemod": "", + "nickname": "", + "osid": "N00003522", + "pvsid": "27016", + "sortname": "Kaptur, Marcy (Rep.) [D-OH9]", + "twitterid": "RepMarcyKaptur", + "youtubeid": "USRepMarcyKaptur" + }, + "phone": "202-225-4146", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "OH", + "title": "Rep.", + "title_long": "Representative", + "website": "https://kaptur.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Massachusetts's 9th congressional district", + "district": 9, + "enddate": "2023-01-03", + "extra": { + "address": "2351 Rayburn House Office Building Washington DC 20515-2109", + "office": "2351 Rayburn House Office Building", + "rss_url": "http://keating.house.gov/index.php?format=feed&type=rss" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "K000375", + "birthday": "1952-09-06", + "cspanid": 61856, + "firstname": "William", + "gender": "male", + "gender_label": "Male", + "lastname": "Keating", + "link": "https://www.govtrack.us/congress/members/william_keating/412435", + "middlename": "R.", + "name": "Rep. William Keating [D-MA9]", + "namemod": "", + "nickname": "", + "osid": "N00031933", + "pvsid": "4743", + "sortname": "Keating, William (Rep.) [D-MA9]", + "twitterid": "USRepKeating", + "youtubeid": "RepBillKeating" + }, + "phone": "202-225-3111", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://keating.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Pennsylvania's 16th congressional district", + "district": 16, + "enddate": "2023-01-03", + "extra": { + "address": "1707 Longworth House Office Building Washington DC 20515-3816", + "office": "1707 Longworth House Office Building", + "rss_url": "http://kelly.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "K000376", + "birthday": "1948-05-10", + "cspanid": 62696, + "firstname": "Mike", + "gender": "male", + "gender_label": "Male", + "lastname": "Kelly", + "link": "https://www.govtrack.us/congress/members/mike_kelly/412465", + "middlename": "", + "name": "Rep. Mike Kelly [R-PA16]", + "namemod": "", + "nickname": "", + "osid": "N00031647", + "pvsid": "119463", + "sortname": "Kelly, Mike (Rep.) [R-PA16]", + "twitterid": "MikeKellyPA", + "youtubeid": "repmikekelly" + }, + "phone": "202-225-5406", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "PA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://kelly.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Wisconsin's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "1502 Longworth House Office Building Washington DC 20515-4903", + "office": "1502 Longworth House Office Building", + "rss_url": "http://kind.house.gov/common/rss/?rss=52" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "K000188", + "birthday": "1963-03-16", + "cspanid": 45870, + "firstname": "Ron", + "gender": "male", + "gender_label": "Male", + "lastname": "Kind", + "link": "https://www.govtrack.us/congress/members/ron_kind/400218", + "middlename": "James", + "name": "Rep. Ron Kind [D-WI3]", + "namemod": "", + "nickname": "", + "osid": "N00004403", + "pvsid": "630", + "sortname": "Kind, Ron (Rep.) [D-WI3]", + "twitterid": "RepRonKind", + "youtubeid": "RepRonKind" + }, + "phone": "202-225-5506", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "WI", + "title": "Rep.", + "title_long": "Representative", + "website": "https://kind.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Illinois's 16th congressional district", + "district": 16, + "enddate": "2023-01-03", + "extra": { + "address": "2245 Rayburn House Office Building Washington DC 20515-1316", + "office": "2245 Rayburn House Office Building", + "rss_url": "http://kinzinger.house.gov/common/rss//index.cfm?rss=49" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "K000378", + "birthday": "1978-02-27", + "cspanid": 62573, + "firstname": "Adam", + "gender": "male", + "gender_label": "Male", + "lastname": "Kinzinger", + "link": "https://www.govtrack.us/congress/members/adam_kinzinger/412421", + "middlename": "", + "name": "Rep. Adam Kinzinger [R-IL16]", + "namemod": "", + "nickname": "", + "osid": "N00030667", + "pvsid": "116559", + "sortname": "Kinzinger, Adam (Rep.) [R-IL16]", + "twitterid": "RepKinzinger", + "youtubeid": "RepAdamKinzinger" + }, + "phone": "202-225-3635", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "IL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://kinzinger.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Colorado's 5th congressional district", + "district": 5, + "enddate": "2023-01-03", + "extra": { + "address": "2371 Rayburn House Office Building Washington DC 20515-0605", + "office": "2371 Rayburn House Office Building", + "rss_url": "http://lamborn.house.gov/news-rss-graphic/news-rss-graphic/" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "L000564", + "birthday": "1954-05-24", + "cspanid": 1022846, + "firstname": "Doug", + "gender": "male", + "gender_label": "Male", + "lastname": "Lamborn", + "link": "https://www.govtrack.us/congress/members/doug_lamborn/412191", + "middlename": "", + "name": "Rep. Doug Lamborn [R-CO5]", + "namemod": "", + "nickname": "", + "osid": "N00028133", + "pvsid": "2698", + "sortname": "Lamborn, Doug (Rep.) [R-CO5]", + "twitterid": "RepDLamborn", + "youtubeid": "CongressmanLamborn" + }, + "phone": "202-225-4422", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CO", + "title": "Rep.", + "title_long": "Representative", + "website": "https://lamborn.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Rhode Island's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "2077 Rayburn House Office Building Washington DC 20515-3902", + "office": "2077 Rayburn House Office Building", + "rss_url": "http://langevin.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "L000559", + "birthday": "1964-04-22", + "cspanid": 86608, + "firstname": "James", + "gender": "male", + "gender_label": "Male", + "lastname": "Langevin", + "link": "https://www.govtrack.us/congress/members/james_langevin/400230", + "middlename": "R.", + "name": "Rep. James “Jim” Langevin [D-RI2]", + "namemod": "", + "nickname": "Jim", + "osid": "N00009724", + "pvsid": "55787", + "sortname": "Langevin, James “Jim” (Rep.) [D-RI2]", + "twitterid": "JimLangevin", + "youtubeid": "jimlangevin" + }, + "phone": "202-225-2735", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "RI", + "title": "Rep.", + "title_long": "Representative", + "website": "https://langevin.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Washington's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "2163 Rayburn House Office Building Washington DC 20515-4702", + "office": "2163 Rayburn House Office Building", + "rss_url": "http://larsen.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "L000560", + "birthday": "1965-06-15", + "cspanid": 86610, + "firstname": "Rick", + "gender": "male", + "gender_label": "Male", + "lastname": "Larsen", + "link": "https://www.govtrack.us/congress/members/rick_larsen/400232", + "middlename": "", + "name": "Rep. Rick Larsen [D-WA2]", + "namemod": "", + "nickname": "", + "osid": "N00009759", + "pvsid": "56231", + "sortname": "Larsen, Rick (Rep.) [D-WA2]", + "twitterid": "RepRickLarsen", + "youtubeid": "congressmanlarsen" + }, + "phone": "202-225-2605", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "WA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://larsen.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Connecticut's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "1501 Longworth House Office Building Washington DC 20515-0701", + "office": "1501 Longworth House Office Building", + "rss_url": "http://www.larson.house.gov/index.php?format=feed&type=rss" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "L000557", + "birthday": "1948-07-22", + "cspanid": 36596, + "firstname": "John", + "gender": "male", + "gender_label": "Male", + "lastname": "Larson", + "link": "https://www.govtrack.us/congress/members/john_larson/400233", + "middlename": "B.", + "name": "Rep. John Larson [D-CT1]", + "namemod": "", + "nickname": "", + "osid": "N00000575", + "pvsid": "17188", + "sortname": "Larson, John (Rep.) [D-CT1]", + "twitterid": "RepJohnLarson", + "youtubeid": "RepJohnLarson" + }, + "phone": "202-225-2265", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CT", + "title": "Rep.", + "title_long": "Representative", + "website": "https://larson.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Ohio's 5th congressional district", + "district": 5, + "enddate": "2023-01-03", + "extra": { + "address": "2467 Rayburn House Office Building Washington DC 20515-3505", + "office": "2467 Rayburn House Office Building", + "rss_url": "http://latta.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "L000566", + "birthday": "1956-04-18", + "cspanid": 1028071, + "firstname": "Robert", + "gender": "male", + "gender_label": "Male", + "lastname": "Latta", + "link": "https://www.govtrack.us/congress/members/robert_latta/412256", + "middlename": "E.", + "name": "Rep. Robert Latta [R-OH5]", + "namemod": "", + "nickname": "", + "osid": "N00012233", + "pvsid": "9926", + "sortname": "Latta, Robert (Rep.) [R-OH5]", + "twitterid": "BobLatta", + "youtubeid": "CongressmanBobLatta" + }, + "phone": "202-225-6405", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "OH", + "title": "Rep.", + "title_long": "Representative", + "website": "https://latta.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 13th congressional district", + "district": 13, + "enddate": "2023-01-03", + "extra": { + "address": "2470 Rayburn House Office Building Washington DC 20515-0513", + "office": "2470 Rayburn House Office Building", + "rss_url": "http://lee.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "L000551", + "birthday": "1946-07-16", + "cspanid": 54579, + "firstname": "Barbara", + "gender": "female", + "gender_label": "Female", + "lastname": "Lee", + "link": "https://www.govtrack.us/congress/members/barbara_lee/400237", + "middlename": "", + "name": "Rep. Barbara Lee [D-CA13]", + "namemod": "", + "nickname": "", + "osid": "N00008046", + "pvsid": "8315", + "sortname": "Lee, Barbara (Rep.) [D-CA13]", + "twitterid": "RepBarbaraLee", + "youtubeid": "RepLee" + }, + "phone": "202-225-2661", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://lee.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 19th congressional district", + "district": 19, + "enddate": "2023-01-03", + "extra": { + "address": "1401 Longworth House Office Building Washington DC 20515-0519", + "office": "1401 Longworth House Office Building", + "rss_url": "http://lofgren.house.gov/index.php?format=feed&type=rss" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "L000397", + "birthday": "1947-12-21", + "cspanid": 36520, + "firstname": "Zoe", + "gender": "female", + "gender_label": "Female", + "lastname": "Lofgren", + "link": "https://www.govtrack.us/congress/members/zoe_lofgren/400245", + "middlename": "", + "name": "Rep. Zoe Lofgren [D-CA19]", + "namemod": "", + "nickname": "", + "osid": "N00007479", + "pvsid": "21899", + "sortname": "Lofgren, Zoe (Rep.) [D-CA19]", + "twitterid": "RepZoeLofgren", + "youtubeid": "RepZoeLofgren" + }, + "phone": "202-225-3072", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://lofgren.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Missouri's 7th congressional district", + "district": 7, + "enddate": "2023-01-03", + "extra": { + "address": "2454 Rayburn House Office Building Washington DC 20515-2507", + "office": "2454 Rayburn House Office Building", + "rss_url": "http://long.house.gov/common/rss//index.cfm?rss=49" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "L000576", + "birthday": "1955-08-11", + "cspanid": 61880, + "firstname": "Billy", + "gender": "male", + "gender_label": "Male", + "lastname": "Long", + "link": "https://www.govtrack.us/congress/members/billy_long/412445", + "middlename": "", + "name": "Rep. Billy Long [R-MO7]", + "namemod": "", + "nickname": "", + "osid": "N00030676", + "pvsid": "123401", + "sortname": "Long, Billy (Rep.) [R-MO7]", + "twitterid": "USRepLong", + "youtubeid": "MOdistrict7" + }, + "phone": "202-225-6536", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MO", + "title": "Rep.", + "title_long": "Representative", + "website": "https://long.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Oklahoma's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "2405 Rayburn House Office Building Washington DC 20515-3603", + "office": "2405 Rayburn House Office Building", + "rss_url": "http://lucas.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "L000491", + "birthday": "1960-01-06", + "cspanid": 35692, + "firstname": "Frank", + "gender": "male", + "gender_label": "Male", + "lastname": "Lucas", + "link": "https://www.govtrack.us/congress/members/frank_lucas/400247", + "middlename": "D.", + "name": "Rep. Frank Lucas [R-OK3]", + "namemod": "", + "nickname": "", + "osid": "N00005559", + "pvsid": "27032", + "sortname": "Lucas, Frank (Rep.) [R-OK3]", + "twitterid": "RepFrankLucas", + "youtubeid": "RepFrankLucas" + }, + "phone": "202-225-5565", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "OK", + "title": "Rep.", + "title_long": "Representative", + "website": "https://lucas.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Missouri's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "2230 Rayburn House Office Building Washington DC 20515-2503", + "office": "2230 Rayburn House Office Building", + "rss_url": "http://luetkemeyer.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "L000569", + "birthday": "1952-05-07", + "cspanid": 1031348, + "firstname": "Blaine", + "gender": "male", + "gender_label": "Male", + "lastname": "Luetkemeyer", + "link": "https://www.govtrack.us/congress/members/blaine_luetkemeyer/412292", + "middlename": "", + "name": "Rep. Blaine Luetkemeyer [R-MO3]", + "namemod": "", + "nickname": "", + "osid": "N00030026", + "pvsid": "20400", + "sortname": "Luetkemeyer, Blaine (Rep.) [R-MO3]", + "twitterid": "RepBlaine", + "youtubeid": "BLuetkemeyer" + }, + "phone": "202-225-2956", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MO", + "title": "Rep.", + "title_long": "Representative", + "website": "https://luetkemeyer.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Massachusetts's 8th congressional district", + "district": 8, + "enddate": "2023-01-03", + "extra": { + "address": "2109 Rayburn House Office Building Washington DC 20515-2108", + "office": "2109 Rayburn House Office Building", + "rss_url": "http://lynch.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "L000562", + "birthday": "1955-03-31", + "cspanid": 1000222, + "firstname": "Stephen", + "gender": "male", + "gender_label": "Male", + "lastname": "Lynch", + "link": "https://www.govtrack.us/congress/members/stephen_lynch/400249", + "middlename": "F.", + "name": "Rep. Stephen Lynch [D-MA8]", + "namemod": "", + "nickname": "", + "osid": "N00013855", + "pvsid": "4844", + "sortname": "Lynch, Stephen (Rep.) [D-MA8]", + "twitterid": "RepStephenLynch", + "youtubeid": "RepLynch" + }, + "phone": "202-225-8273", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://lynch.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New York's 12th congressional district", + "district": 12, + "enddate": "2023-01-03", + "extra": { + "address": "2308 Rayburn House Office Building Washington DC 20515-3212", + "office": "2308 Rayburn House Office Building", + "rss_url": "http://maloney.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "M000087", + "birthday": "1946-02-19", + "cspanid": 26162, + "firstname": "Carolyn", + "gender": "female", + "gender_label": "Female", + "lastname": "Maloney", + "link": "https://www.govtrack.us/congress/members/carolyn_maloney/400251", + "middlename": "B.", + "name": "Rep. Carolyn Maloney [D-NY12]", + "namemod": "", + "nickname": "", + "osid": "N00000078", + "pvsid": "26978", + "sortname": "Maloney, Carolyn (Rep.) [D-NY12]", + "twitterid": "RepMaloney", + "youtubeid": "carolynbmaloney" + }, + "phone": "202-225-7944", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NY", + "title": "Rep.", + "title_long": "Representative", + "website": "https://maloney.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 6th congressional district", + "district": 6, + "enddate": "2023-01-03", + "extra": { + "address": "2311 Rayburn House Office Building Washington DC 20515-0506", + "office": "2311 Rayburn House Office Building", + "rss_url": "http://matsui.house.gov/index.php?format=feed&type=rss" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "M001163", + "birthday": "1944-09-25", + "cspanid": 26602, + "firstname": "Doris", + "gender": "female", + "gender_label": "Female", + "lastname": "Matsui", + "link": "https://www.govtrack.us/congress/members/doris_matsui/400663", + "middlename": "O.", + "name": "Rep. Doris Matsui [D-CA6]", + "namemod": "", + "nickname": "", + "osid": "N00027459", + "pvsid": "28593", + "sortname": "Matsui, Doris (Rep.) [D-CA6]", + "twitterid": "DorisMatsui", + "youtubeid": "RepDorisMatsui" + }, + "phone": "202-225-7163", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://matsui.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 23rd congressional district", + "district": 23, + "enddate": "2023-01-03", + "extra": { + "address": "2468 Rayburn House Office Building Washington DC 20515-0523", + "office": "2468 Rayburn House Office Building", + "rss_url": "http://kevinmccarthy.house.gov/index.php?format=feed&type=rss" + }, + "leadership_title": "House Minority Leader", + "party": "Republican", + "person": { + "bioguideid": "M001165", + "birthday": "1965-01-26", + "cspanid": 85231, + "firstname": "Kevin", + "gender": "male", + "gender_label": "Male", + "lastname": "McCarthy", + "link": "https://www.govtrack.us/congress/members/kevin_mccarthy/412190", + "middlename": "", + "name": "Rep. Kevin McCarthy [R-CA23]", + "namemod": "", + "nickname": "", + "osid": "N00028152", + "pvsid": "28918", + "sortname": "McCarthy, Kevin (Rep.) [R-CA23]", + "twitterid": "GOPLeader", + "youtubeid": "repkevinmccarthy" + }, + "phone": "202-225-2915", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://kevinmccarthy.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Texas's 10th congressional district", + "district": 10, + "enddate": "2023-01-03", + "extra": { + "address": "2001 Rayburn House Office Building Washington DC 20515-4310", + "office": "2001 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "M001157", + "birthday": "1962-01-14", + "cspanid": 1013056, + "firstname": "Michael", + "gender": "male", + "gender_label": "Male", + "lastname": "McCaul", + "link": "https://www.govtrack.us/congress/members/michael_mccaul/400654", + "middlename": "T.", + "name": "Rep. Michael McCaul [R-TX10]", + "namemod": "", + "nickname": "", + "osid": "N00026460", + "pvsid": "49210", + "sortname": "McCaul, Michael (Rep.) [R-TX10]", + "twitterid": "RepMcCaul", + "youtubeid": "MichaelTMcCaul" + }, + "phone": "202-225-2401", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TX", + "title": "Rep.", + "title_long": "Representative", + "website": "https://mccaul.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 4th congressional district", + "district": 4, + "enddate": "2023-01-03", + "extra": { + "address": "2312 Rayburn House Office Building Washington DC 20515-0504", + "office": "2312 Rayburn House Office Building", + "rss_url": "http://mcclintock.house.gov/atom.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "M001177", + "birthday": "1956-07-10", + "cspanid": 30359, + "firstname": "Tom", + "gender": "male", + "gender_label": "Male", + "lastname": "McClintock", + "link": "https://www.govtrack.us/congress/members/tom_mcclintock/412295", + "middlename": "", + "name": "Rep. Tom McClintock [R-CA4]", + "namemod": "", + "nickname": "", + "osid": "N00006863", + "pvsid": "9715", + "sortname": "McClintock, Tom (Rep.) [R-CA4]", + "twitterid": "RepMcClintock", + "youtubeid": "McClintockCA04" + }, + "phone": "202-225-2511", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://mcclintock.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Minnesota's 4th congressional district", + "district": 4, + "enddate": "2023-01-03", + "extra": { + "address": "2256 Rayburn House Office Building Washington DC 20515-2304", + "office": "2256 Rayburn House Office Building", + "rss_url": "http://mccollum.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "M001143", + "birthday": "1954-07-12", + "cspanid": 86670, + "firstname": "Betty", + "gender": "female", + "gender_label": "Female", + "lastname": "McCollum", + "link": "https://www.govtrack.us/congress/members/betty_mccollum/400259", + "middlename": "Louise", + "name": "Rep. Betty McCollum [D-MN4]", + "namemod": "", + "nickname": "", + "osid": "N00012942", + "pvsid": "3812", + "sortname": "McCollum, Betty (Rep.) [D-MN4]", + "twitterid": "BettyMcCollum04", + "youtubeid": "BMcCollum04" + }, + "phone": "202-225-6631", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MN", + "title": "Rep.", + "title_long": "Representative", + "website": "https://mccollum.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Massachusetts's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "370 Cannon House Office Building Washington DC 20515-2102", + "office": "370 Cannon House Office Building", + "rss_url": "http://mcgovern.house.gov/common/rss/?rss=15" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "M000312", + "birthday": "1959-11-20", + "cspanid": 45976, + "firstname": "James", + "gender": "male", + "gender_label": "Male", + "lastname": "McGovern", + "link": "https://www.govtrack.us/congress/members/james_mcgovern/400263", + "middlename": "P.", + "name": "Rep. James “Jim” McGovern [D-MA2]", + "namemod": "", + "nickname": "Jim", + "osid": "N00000179", + "pvsid": "552", + "sortname": "McGovern, James “Jim” (Rep.) [D-MA2]", + "twitterid": "RepMcGovern", + "youtubeid": "repjimmcgovern" + }, + "phone": "202-225-6101", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://mcgovern.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for North Carolina's 10th congressional district", + "district": 10, + "enddate": "2023-01-03", + "extra": { + "address": "2004 Rayburn House Office Building Washington DC 20515-3310", + "office": "2004 Rayburn House Office Building", + "rss_url": "http://mchenry.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "M001156", + "birthday": "1975-10-22", + "cspanid": 1007062, + "firstname": "Patrick", + "gender": "male", + "gender_label": "Male", + "lastname": "McHenry", + "link": "https://www.govtrack.us/congress/members/patrick_mchenry/400644", + "middlename": "T.", + "name": "Rep. Patrick McHenry [R-NC10]", + "namemod": "", + "nickname": "", + "osid": "N00026627", + "pvsid": "21031", + "sortname": "McHenry, Patrick (Rep.) [R-NC10]", + "twitterid": "PatrickMcHenry", + "youtubeid": "CongressmanMcHenry" + }, + "phone": "202-225-2576", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NC", + "title": "Rep.", + "title_long": "Representative", + "website": "https://mchenry.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for West Virginia's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "2239 Rayburn House Office Building Washington DC 20515-4801", + "office": "2239 Rayburn House Office Building", + "rss_url": "http://mckinley.house.gov/common/rss//index.cfm?rss=49" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "M001180", + "birthday": "1947-03-28", + "cspanid": 9269013, + "firstname": "David", + "gender": "male", + "gender_label": "Male", + "lastname": "McKinley", + "link": "https://www.govtrack.us/congress/members/david_mckinley/412487", + "middlename": "B.", + "name": "Rep. David McKinley [R-WV1]", + "namemod": "", + "nickname": "", + "osid": "N00031681", + "pvsid": "117396", + "sortname": "McKinley, David (Rep.) [R-WV1]", + "twitterid": "RepMcKinley", + "youtubeid": "RepDavidMcKinley" + }, + "phone": "202-225-4172", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "WV", + "title": "Rep.", + "title_long": "Representative", + "website": "https://mckinley.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Washington's 5th congressional district", + "district": 5, + "enddate": "2023-01-03", + "extra": { + "address": "1035 Longworth House Office Building Washington DC 20515-4705", + "office": "1035 Longworth House Office Building", + "rss_url": "http://mcmorris.house.gov/common/rss/?rss=96" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "M001159", + "birthday": "1969-05-22", + "cspanid": 1013063, + "firstname": "Cathy", + "gender": "female", + "gender_label": "Female", + "lastname": "Rodgers", + "link": "https://www.govtrack.us/congress/members/cathy_rodgers/400659", + "middlename": "McMorris", + "name": "Rep. Cathy Rodgers [R-WA5]", + "namemod": "", + "nickname": "", + "osid": "N00026314", + "pvsid": "3217", + "sortname": "Rodgers, Cathy (Rep.) [R-WA5]", + "twitterid": "CathyMcMorris", + "youtubeid": "mcmorrisrodgers" + }, + "phone": "202-225-2006", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "WA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://mcmorris.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 9th congressional district", + "district": 9, + "enddate": "2023-01-03", + "extra": { + "address": "2265 Rayburn House Office Building Washington DC 20515-0509", + "office": "2265 Rayburn House Office Building", + "rss_url": "http://mcnerney.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "M001166", + "birthday": "1951-06-18", + "cspanid": 1021667, + "firstname": "Jerry", + "gender": "male", + "gender_label": "Male", + "lastname": "McNerney", + "link": "https://www.govtrack.us/congress/members/jerry_mcnerney/412189", + "middlename": "", + "name": "Rep. Jerry McNerney [D-CA9]", + "namemod": "", + "nickname": "", + "osid": "N00026926", + "pvsid": "29474", + "sortname": "McNerney, Jerry (Rep.) [D-CA9]", + "twitterid": "RepMcNerney", + "youtubeid": "RepJerryMcNerney" + }, + "phone": "202-225-1947", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://mcnerney.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New York's 5th congressional district", + "district": 5, + "enddate": "2023-01-03", + "extra": { + "address": "2310 Rayburn House Office Building Washington DC 20515-3205", + "office": "2310 Rayburn House Office Building", + "rss_url": "http://meeks.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "M001137", + "birthday": "1953-09-25", + "cspanid": 53469, + "firstname": "Gregory", + "gender": "male", + "gender_label": "Male", + "lastname": "Meeks", + "link": "https://www.govtrack.us/congress/members/gregory_meeks/400271", + "middlename": "W.", + "name": "Rep. Gregory Meeks [D-NY5]", + "namemod": "", + "nickname": "", + "osid": "N00001171", + "pvsid": "4360", + "sortname": "Meeks, Gregory (Rep.) [D-NY5]", + "twitterid": "RepGregoryMeeks", + "youtubeid": "gwmeeks" + }, + "phone": "202-225-3461", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NY", + "title": "Rep.", + "title_long": "Representative", + "website": "https://meeks.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Wisconsin's 4th congressional district", + "district": 4, + "enddate": "2023-01-03", + "extra": { + "address": "2252 Rayburn House Office Building Washington DC 20515-4904", + "office": "2252 Rayburn House Office Building", + "rss_url": "http://gwenmoore.house.gov/common/rss/index.cfm?rss=49" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "M001160", + "birthday": "1951-04-18", + "cspanid": 42548, + "firstname": "Gwen", + "gender": "female", + "gender_label": "Female", + "lastname": "Moore", + "link": "https://www.govtrack.us/congress/members/gwen_moore/400661", + "middlename": "", + "name": "Rep. Gwen Moore [D-WI4]", + "namemod": "", + "nickname": "", + "osid": "N00026914", + "pvsid": "3457", + "sortname": "Moore, Gwen (Rep.) [D-WI4]", + "twitterid": "RepGwenMoore", + "youtubeid": "RepGwenMoore" + }, + "phone": "202-225-4572", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "WI", + "title": "Rep.", + "title_long": "Representative", + "website": "https://gwenmoore.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New York's 10th congressional district", + "district": 10, + "enddate": "2023-01-03", + "extra": { + "address": "2132 Rayburn House Office Building Washington DC 20515-3210", + "office": "2132 Rayburn House Office Building", + "rss_url": "http://nadler.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "N000002", + "birthday": "1947-06-13", + "cspanid": 26159, + "firstname": "Jerrold", + "gender": "male", + "gender_label": "Male", + "lastname": "Nadler", + "link": "https://www.govtrack.us/congress/members/jerrold_nadler/400289", + "middlename": "L.", + "name": "Rep. Jerrold Nadler [D-NY10]", + "namemod": "", + "nickname": "", + "osid": "N00000939", + "pvsid": "26980", + "sortname": "Nadler, Jerrold (Rep.) [D-NY10]", + "twitterid": "RepJerryNadler", + "youtubeid": "congressmannadler" + }, + "phone": "202-225-5635", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NY", + "title": "Rep.", + "title_long": "Representative", + "website": "https://nadler.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 32nd congressional district", + "district": 32, + "enddate": "2023-01-03", + "extra": { + "address": "1610 Longworth House Office Building Washington DC 20515-0532", + "office": "1610 Longworth House Office Building", + "rss_url": "http://napolitano.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "N000179", + "birthday": "1936-12-04", + "cspanid": 57873, + "firstname": "Grace", + "gender": "female", + "gender_label": "Female", + "lastname": "Napolitano", + "link": "https://www.govtrack.us/congress/members/grace_napolitano/400290", + "middlename": "F.", + "name": "Rep. Grace Napolitano [D-CA32]", + "namemod": "", + "nickname": "", + "osid": "N00006789", + "pvsid": "8393", + "sortname": "Napolitano, Grace (Rep.) [D-CA32]", + "twitterid": "GraceNapolitano", + "youtubeid": "RepGraceNapolitano" + }, + "phone": "202-225-5256", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://napolitano.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Massachusetts's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "372 Cannon House Office Building Washington DC 20515-2101", + "office": "372 Cannon House Office Building", + "rss_url": "http://neal.house.gov/index.php?format=feed&type=rss" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "N000015", + "birthday": "1949-02-14", + "cspanid": 6103, + "firstname": "Richard", + "gender": "male", + "gender_label": "Male", + "lastname": "Neal", + "link": "https://www.govtrack.us/congress/members/richard_neal/400291", + "middlename": "E.", + "name": "Rep. Richard Neal [D-MA1]", + "namemod": "", + "nickname": "", + "osid": "N00000153", + "pvsid": "26895", + "sortname": "Neal, Richard (Rep.) [D-MA1]", + "twitterid": "RepRichardNeal", + "youtubeid": "RepRichardENeal" + }, + "phone": "202-225-5601", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://neal.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for the District of Columbia", + "district": 0, + "enddate": "2023-01-03", + "extra": { + "address": "2136 Rayburn House Office Building Washington DC 20515-5101", + "office": "2136 Rayburn House Office Building", + "rss_url": "http://norton.house.gov/index.php?format=feed&type=rss" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "N000147", + "birthday": "1937-06-13", + "cspanid": 882, + "firstname": "Eleanor", + "gender": "female", + "gender_label": "Female", + "lastname": "Norton", + "link": "https://www.govtrack.us/congress/members/eleanor_norton/400295", + "middlename": "Holmes", + "name": "Rep. Eleanor Norton [D-DC0]", + "namemod": "", + "nickname": "", + "osid": "N00001692", + "pvsid": "775", + "sortname": "Norton, Eleanor (Rep.) [D-DC0]", + "twitterid": "EleanorNorton", + "youtubeid": "EleanorHNorton" + }, + "phone": "202-225-8050", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "DC", + "title": "Rep.", + "title_long": "Representative", + "website": "https://norton.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 22nd congressional district", + "district": 22, + "enddate": "2023-01-03", + "extra": { + "address": "1013 Longworth House Office Building Washington DC 20515-0522", + "office": "1013 Longworth House Office Building", + "rss_url": "http://nunes.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "N000181", + "birthday": "1973-10-01", + "cspanid": 1003553, + "firstname": "Devin", + "gender": "male", + "gender_label": "Male", + "lastname": "Nunes", + "link": "https://www.govtrack.us/congress/members/devin_nunes/400297", + "middlename": "G.", + "name": "Rep. Devin Nunes [R-CA22]", + "namemod": "", + "nickname": "", + "osid": "N00007248", + "pvsid": "16725", + "sortname": "Nunes, Devin (Rep.) [R-CA22]", + "twitterid": "RepDevinNunes", + "youtubeid": "RepDevinNunes" + }, + "phone": "202-225-2523", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://nunes.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Mississippi's 4th congressional district", + "district": 4, + "enddate": "2023-01-03", + "extra": { + "address": "2349 Rayburn House Office Building Washington DC 20515-2404", + "office": "2349 Rayburn House Office Building", + "rss_url": "http://palazzo.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "P000601", + "birthday": "1970-02-21", + "cspanid": 61886, + "firstname": "Steven", + "gender": "male", + "gender_label": "Male", + "lastname": "Palazzo", + "link": "https://www.govtrack.us/congress/members/steven_palazzo/412443", + "middlename": "M.", + "name": "Rep. Steven Palazzo [R-MS4]", + "namemod": "", + "nickname": "", + "osid": "N00031958", + "pvsid": "69521", + "sortname": "Palazzo, Steven (Rep.) [R-MS4]", + "twitterid": "CongPalazzo", + "youtubeid": "CongressmanPalazzo" + }, + "phone": "202-225-5772", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MS", + "title": "Rep.", + "title_long": "Representative", + "website": "https://palazzo.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New Jersey's 6th congressional district", + "district": 6, + "enddate": "2023-01-03", + "extra": { + "address": "2107 Rayburn House Office Building Washington DC 20515-3006", + "office": "2107 Rayburn House Office Building", + "rss_url": "http://pallone.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "P000034", + "birthday": "1951-10-30", + "cspanid": 6107, + "firstname": "Frank", + "gender": "male", + "gender_label": "Male", + "lastname": "Pallone", + "link": "https://www.govtrack.us/congress/members/frank_pallone/400308", + "middlename": "J.", + "name": "Rep. Frank Pallone [D-NJ6]", + "namemod": "Jr.", + "nickname": "", + "osid": "N00000781", + "pvsid": "26951", + "sortname": "Pallone, Frank (Rep.) [D-NJ6]", + "twitterid": "FrankPallone", + "youtubeid": "repfrankpallone" + }, + "phone": "202-225-4671", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NJ", + "title": "Rep.", + "title_long": "Representative", + "website": "https://pallone.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New Jersey's 9th congressional district", + "district": 9, + "enddate": "2023-01-03", + "extra": { + "address": "2409 Rayburn House Office Building Washington DC 20515-3009", + "office": "2409 Rayburn House Office Building", + "rss_url": "http://www.house.gov/apps/list/press/nj08_pascrell/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "P000096", + "birthday": "1937-01-25", + "cspanid": 45543, + "firstname": "Bill", + "gender": "male", + "gender_label": "Male", + "lastname": "Pascrell", + "link": "https://www.govtrack.us/congress/members/bill_pascrell/400309", + "middlename": "J.", + "name": "Rep. Bill Pascrell [D-NJ9]", + "namemod": "Jr.", + "nickname": "", + "osid": "N00000751", + "pvsid": "478", + "sortname": "Pascrell, Bill (Rep.) [D-NJ9]", + "twitterid": "BillPascrell", + "youtubeid": "RepPascrell" + }, + "phone": "202-225-5751", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NJ", + "title": "Rep.", + "title_long": "Representative", + "website": "https://pascrell.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 12th congressional district", + "district": 12, + "enddate": "2023-01-03", + "extra": { + "address": "1236 Longworth House Office Building Washington DC 20515-0512", + "office": "1236 Longworth House Office Building", + "rss_url": "http://pelosi.house.gov/atom.xml" + }, + "leadership_title": "Speaker of the House", + "party": "Democrat", + "person": { + "bioguideid": "P000197", + "birthday": "1940-03-26", + "cspanid": 6153, + "firstname": "Nancy", + "gender": "female", + "gender_label": "Female", + "lastname": "Pelosi", + "link": "https://www.govtrack.us/congress/members/nancy_pelosi/400314", + "middlename": "", + "name": "Rep. Nancy Pelosi [D-CA12]", + "namemod": "", + "nickname": "", + "osid": "N00007360", + "pvsid": "26732", + "sortname": "Pelosi, Nancy (Rep.) [D-CA12]", + "twitterid": "SpeakerPelosi", + "youtubeid": "nancypelosi" + }, + "phone": "202-225-4965", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://pelosi.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Colorado's 7th congressional district", + "district": 7, + "enddate": "2023-01-03", + "extra": { + "address": "1226 Longworth House Office Building Washington DC 20515-0607", + "office": "1226 Longworth House Office Building", + "rss_url": "http://perlmutter.house.gov/index.php?format=feed&type=rss" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "P000593", + "birthday": "1953-05-01", + "cspanid": 1021382, + "firstname": "Ed", + "gender": "male", + "gender_label": "Male", + "lastname": "Perlmutter", + "link": "https://www.govtrack.us/congress/members/ed_perlmutter/412192", + "middlename": "", + "name": "Rep. Ed Perlmutter [D-CO7]", + "namemod": "", + "nickname": "", + "osid": "N00027510", + "pvsid": "2653", + "sortname": "Perlmutter, Ed (Rep.) [D-CO7]", + "twitterid": "RepPerlmutter", + "youtubeid": "RepPerlmutter" + }, + "phone": "202-225-2645", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CO", + "title": "Rep.", + "title_long": "Representative", + "website": "https://perlmutter.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Maine's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "2162 Rayburn House Office Building Washington DC 20515-1901", + "office": "2162 Rayburn House Office Building", + "rss_url": "http://pingree.house.gov/index.php?format=feed&type=rss" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "P000597", + "birthday": "1955-04-02", + "cspanid": 1002167, + "firstname": "Chellie", + "gender": "female", + "gender_label": "Female", + "lastname": "Pingree", + "link": "https://www.govtrack.us/congress/members/chellie_pingree/412307", + "middlename": "", + "name": "Rep. Chellie Pingree [D-ME1]", + "namemod": "", + "nickname": "", + "osid": "N00013817", + "pvsid": "6586", + "sortname": "Pingree, Chellie (Rep.) [D-ME1]", + "twitterid": "ChelliePingree", + "youtubeid": "congresswomanpingree" + }, + "phone": "202-225-6116", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "ME", + "title": "Rep.", + "title_long": "Representative", + "website": "https://pingree.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Florida's 8th congressional district", + "district": 8, + "enddate": "2023-01-03", + "extra": { + "address": "2150 Rayburn House Office Building Washington DC 20515-0908", + "office": "2150 Rayburn House Office Building", + "rss_url": "http://posey.house.gov/news/rss.aspx?documenttypeid=1487" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "P000599", + "birthday": "1947-12-18", + "cspanid": 88959, + "firstname": "Bill", + "gender": "male", + "gender_label": "Male", + "lastname": "Posey", + "link": "https://www.govtrack.us/congress/members/bill_posey/412309", + "middlename": "", + "name": "Rep. Bill Posey [R-FL8]", + "namemod": "", + "nickname": "", + "osid": "N00029662", + "pvsid": "24280", + "sortname": "Posey, Bill (Rep.) [R-FL8]", + "twitterid": "CongBillPosey", + "youtubeid": "CongressmanPosey" + }, + "phone": "202-225-3671", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "FL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://posey.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for North Carolina's 4th congressional district", + "district": 4, + "enddate": "2023-01-03", + "extra": { + "address": "2108 Rayburn House Office Building Washington DC 20515-3304", + "office": "2108 Rayburn House Office Building", + "rss_url": "http://price.house.gov/index.php?format=feed&type=rss" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "P000523", + "birthday": "1940-08-17", + "cspanid": 6748, + "firstname": "David", + "gender": "male", + "gender_label": "Male", + "lastname": "Price", + "link": "https://www.govtrack.us/congress/members/david_price/400326", + "middlename": "E.", + "name": "Rep. David Price [D-NC4]", + "namemod": "", + "nickname": "", + "osid": "N00002260", + "pvsid": "119", + "sortname": "Price, David (Rep.) [D-NC4]", + "twitterid": "RepDavidEPrice", + "youtubeid": "RepDavidPrice" + }, + "phone": "202-225-1784", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NC", + "title": "Rep.", + "title_long": "Representative", + "website": "https://price.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Illinois's 5th congressional district", + "district": 5, + "enddate": "2023-01-03", + "extra": { + "address": "2078 Rayburn House Office Building Washington DC 20515-1305", + "office": "2078 Rayburn House Office Building", + "rss_url": "http://quigley.house.gov/index.php?format=feed&type=rss" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "Q000023", + "birthday": "1958-10-17", + "cspanid": 9263344, + "firstname": "Mike", + "gender": "male", + "gender_label": "Male", + "lastname": "Quigley", + "link": "https://www.govtrack.us/congress/members/mike_quigley/412331", + "middlename": "", + "name": "Rep. Mike Quigley [D-IL5]", + "namemod": "", + "nickname": "", + "osid": "N00030581", + "pvsid": "83310", + "sortname": "Quigley, Mike (Rep.) [D-IL5]", + "twitterid": "RepMikeQuigley", + "youtubeid": "RepMikeQuigley" + }, + "phone": "202-225-4061", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "IL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://quigley.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New York's 23rd congressional district", + "district": 23, + "enddate": "2023-01-03", + "extra": { + "address": "1203 Longworth House Office Building Washington DC 20515-3223", + "office": "1203 Longworth House Office Building", + "rss_url": "http://reed.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "R000585", + "birthday": "1971-11-18", + "cspanid": 623468, + "firstname": "Tom", + "gender": "male", + "gender_label": "Male", + "lastname": "Reed", + "link": "https://www.govtrack.us/congress/members/tom_reed/412393", + "middlename": "W.", + "name": "Rep. Tom Reed [R-NY23]", + "namemod": "", + "nickname": "", + "osid": "N00030949", + "pvsid": "127046", + "sortname": "Reed, Tom (Rep.) [R-NY23]", + "twitterid": "RepTomReed", + "youtubeid": "CongressmanTomReed" + }, + "phone": "202-225-3161", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NY", + "title": "Rep.", + "title_long": "Representative", + "website": "https://reed.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Kentucky's 5th congressional district", + "district": 5, + "enddate": "2023-01-03", + "extra": { + "address": "2406 Rayburn House Office Building Washington DC 20515-1705", + "office": "2406 Rayburn House Office Building", + "rss_url": "http://halrogers.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "R000395", + "birthday": "1937-12-31", + "cspanid": 6739, + "firstname": "Harold", + "gender": "male", + "gender_label": "Male", + "lastname": "Rogers", + "link": "https://www.govtrack.us/congress/members/harold_rogers/400340", + "middlename": "", + "name": "Rep. Harold “Hal” Rogers [R-KY5]", + "namemod": "", + "nickname": "Hal", + "osid": "N00003473", + "pvsid": "26875", + "sortname": "Rogers, Harold “Hal” (Rep.) [R-KY5]", + "twitterid": "RepHalRogers", + "youtubeid": "RepHalRogers" + }, + "phone": "202-225-4601", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "KY", + "title": "Rep.", + "title_long": "Representative", + "website": "https://halrogers.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Alabama's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "2469 Rayburn House Office Building Washington DC 20515-0103", + "office": "2469 Rayburn House Office Building", + "rss_url": "http://mikerogers.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "R000575", + "birthday": "1958-07-16", + "cspanid": 1014740, + "firstname": "Mike", + "gender": "male", + "gender_label": "Male", + "lastname": "Rogers", + "link": "https://www.govtrack.us/congress/members/mike_rogers/400341", + "middlename": "", + "name": "Rep. Mike Rogers [R-AL3]", + "namemod": "", + "nickname": "", + "osid": "N00024759", + "pvsid": "5705", + "sortname": "Rogers, Mike (Rep.) [R-AL3]", + "twitterid": "RepMikeRogersAL", + "youtubeid": "MikeRogersAL03" + }, + "phone": "202-225-3261", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "AL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://mikerogers.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 40th congressional district", + "district": 40, + "enddate": "2023-01-03", + "extra": { + "address": "2083 Rayburn House Office Building Washington DC 20515-0540", + "office": "2083 Rayburn House Office Building", + "rss_url": "http://roybal-allard.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "R000486", + "birthday": "1941-06-12", + "cspanid": 26136, + "firstname": "Lucille", + "gender": "female", + "gender_label": "Female", + "lastname": "Roybal-Allard", + "link": "https://www.govtrack.us/congress/members/lucille_roybal_allard/400347", + "middlename": "", + "name": "Rep. Lucille Roybal-Allard [D-CA40]", + "namemod": "", + "nickname": "", + "osid": "N00006671", + "pvsid": "26766", + "sortname": "Roybal-Allard, Lucille (Rep.) [D-CA40]", + "twitterid": "RepRoybalAllard", + "youtubeid": "RepRoybalAllard" + }, + "phone": "202-225-1766", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://roybal-allard.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Maryland's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "2206 Rayburn House Office Building Washington DC 20515-2002", + "office": "2206 Rayburn House Office Building", + "rss_url": "http://dutch.house.gov/atom.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "R000576", + "birthday": "1946-01-31", + "cspanid": 49155, + "firstname": "C.", + "gender": "male", + "gender_label": "Male", + "lastname": "Ruppersberger", + "link": "https://www.govtrack.us/congress/members/a_dutch_ruppersberger/400349", + "middlename": "A. Dutch", + "name": "Rep. A. Dutch Ruppersberger [D-MD2]", + "namemod": "", + "nickname": "", + "osid": "N00025482", + "pvsid": "36130", + "sortname": "Ruppersberger, A. Dutch (Rep.) [D-MD2]", + "twitterid": "Call_Me_Dutch", + "youtubeid": "ruppersberger" + }, + "phone": "202-225-3061", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MD", + "title": "Rep.", + "title_long": "Representative", + "website": "https://ruppersberger.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Illinois's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "2188 Rayburn House Office Building Washington DC 20515-1301", + "office": "2188 Rayburn House Office Building", + "rss_url": "http://rush.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "R000515", + "birthday": "1946-11-23", + "cspanid": 26127, + "firstname": "Bobby", + "gender": "male", + "gender_label": "Male", + "lastname": "Rush", + "link": "https://www.govtrack.us/congress/members/bobby_rush/400350", + "middlename": "L.", + "name": "Rep. Bobby Rush [D-IL1]", + "namemod": "", + "nickname": "", + "osid": "N00004887", + "pvsid": "26831", + "sortname": "Rush, Bobby (Rep.) [D-IL1]", + "twitterid": "RepBobbyRush", + "youtubeid": "CongressmanRush" + }, + "phone": "202-225-4372", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "IL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://rush.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Ohio's 13th congressional district", + "district": 13, + "enddate": "2023-01-03", + "extra": { + "address": "1126 Longworth House Office Building Washington DC 20515-3513", + "office": "1126 Longworth House Office Building", + "rss_url": "http://timryan.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "R000577", + "birthday": "1973-07-16", + "cspanid": 1003608, + "firstname": "Tim", + "gender": "male", + "gender_label": "Male", + "lastname": "Ryan", + "link": "https://www.govtrack.us/congress/members/tim_ryan/400352", + "middlename": "J.", + "name": "Rep. Tim Ryan [D-OH13]", + "namemod": "", + "nickname": "", + "osid": "N00025280", + "pvsid": "45638", + "sortname": "Ryan, Tim (Rep.) [D-OH13]", + "twitterid": "RepTimRyan", + "youtubeid": "timryanvision" + }, + "phone": "202-225-5261", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "OH", + "title": "Rep.", + "title_long": "Representative", + "website": "https://timryan.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for the Northern Mariana Islands", + "district": 0, + "enddate": "2023-01-03", + "extra": { + "address": "2267 Rayburn House Office Building Washington DC 20515-5201", + "office": "2267 Rayburn House Office Building", + "rss_url": "http://sablan.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "S001177", + "birthday": "1955-01-19", + "cspanid": 1031366, + "firstname": "Gregorio", + "gender": "male", + "gender_label": "Male", + "lastname": "Sablan", + "link": "https://www.govtrack.us/congress/members/gregorio_sablan/412312", + "middlename": "Kilili Camacho", + "name": "Rep. Gregorio Sablan [D-MP0]", + "namemod": "", + "nickname": "", + "osid": "N00030418", + "pvsid": "110903", + "sortname": "Sablan, Gregorio (Rep.) [D-MP0]", + "twitterid": "Kilili_Sablan", + "youtubeid": "CongressmanSablan" + }, + "phone": "202-225-2646", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MP", + "title": "Rep.", + "title_long": "Representative", + "website": "https://sablan.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Maryland's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "2370 Rayburn House Office Building Washington DC 20515-2003", + "office": "2370 Rayburn House Office Building", + "rss_url": "http://sarbanes.house.gov/rss_news.asp" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "S001168", + "birthday": "1962-05-22", + "cspanid": 1022884, + "firstname": "John", + "gender": "male", + "gender_label": "Male", + "lastname": "Sarbanes", + "link": "https://www.govtrack.us/congress/members/john_sarbanes/412212", + "middlename": "P.", + "name": "Rep. John Sarbanes [D-MD3]", + "namemod": "", + "nickname": "", + "osid": "N00027751", + "pvsid": "66575", + "sortname": "Sarbanes, John (Rep.) [D-MD3]", + "twitterid": "RepSarbanes", + "youtubeid": "RepJohnSarbanes" + }, + "phone": "202-225-4016", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MD", + "title": "Rep.", + "title_long": "Representative", + "website": "https://sarbanes.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Louisiana's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "2049 Rayburn House Office Building Washington DC 20515-1801", + "office": "2049 Rayburn House Office Building", + "rss_url": "http://scalise.house.gov/rss.xml" + }, + "leadership_title": "House Minority Whip", + "party": "Republican", + "person": { + "bioguideid": "S001176", + "birthday": "1965-10-06", + "cspanid": 1015311, + "firstname": "Steve", + "gender": "male", + "gender_label": "Male", + "lastname": "Scalise", + "link": "https://www.govtrack.us/congress/members/steve_scalise/412261", + "middlename": "Joseph", + "name": "Rep. Steve Scalise [R-LA1]", + "namemod": "", + "nickname": "", + "osid": "N00009660", + "pvsid": "9026", + "sortname": "Scalise, Steve (Rep.) [R-LA1]", + "twitterid": "SteveScalise", + "youtubeid": "RepSteveScalise" + }, + "phone": "202-225-3015", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "LA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://scalise.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Illinois's 9th congressional district", + "district": 9, + "enddate": "2023-01-03", + "extra": { + "address": "2367 Rayburn House Office Building Washington DC 20515-1309", + "office": "2367 Rayburn House Office Building", + "rss_url": "http://schakowsky.house.gov/index.php?format=feed&type=rss" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "S001145", + "birthday": "1944-05-26", + "cspanid": 57874, + "firstname": "Janice", + "gender": "female", + "gender_label": "Female", + "lastname": "Schakowsky", + "link": "https://www.govtrack.us/congress/members/janice_schakowsky/400360", + "middlename": "D.", + "name": "Rep. Janice “Jan” Schakowsky [D-IL9]", + "namemod": "", + "nickname": "Jan", + "osid": "N00004724", + "pvsid": "6387", + "sortname": "Schakowsky, Janice “Jan” (Rep.) [D-IL9]", + "twitterid": "JanSchakowsky", + "youtubeid": "repschakowsky" + }, + "phone": "202-225-2111", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "IL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://schakowsky.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 28th congressional district", + "district": 28, + "enddate": "2023-01-03", + "extra": { + "address": "2309 Rayburn House Office Building Washington DC 20515-0528", + "office": "2309 Rayburn House Office Building", + "rss_url": "http://schiff.house.gov/common/rss/?rss=49" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "S001150", + "birthday": "1960-06-22", + "cspanid": 90167, + "firstname": "Adam", + "gender": "male", + "gender_label": "Male", + "lastname": "Schiff", + "link": "https://www.govtrack.us/congress/members/adam_schiff/400361", + "middlename": "B.", + "name": "Rep. Adam Schiff [D-CA28]", + "namemod": "", + "nickname": "", + "osid": "N00009585", + "pvsid": "9489", + "sortname": "Schiff, Adam (Rep.) [D-CA28]", + "twitterid": "RepAdamSchiff", + "youtubeid": "adamschiff" + }, + "phone": "202-225-4176", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://schiff.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Oregon's 5th congressional district", + "district": 5, + "enddate": "2023-01-03", + "extra": { + "address": "2431 Rayburn House Office Building Washington DC 20515-3705", + "office": "2431 Rayburn House Office Building", + "rss_url": "http://schrader.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "S001180", + "birthday": "1951-10-19", + "cspanid": 1031358, + "firstname": "Kurt", + "gender": "male", + "gender_label": "Male", + "lastname": "Schrader", + "link": "https://www.govtrack.us/congress/members/kurt_schrader/412315", + "middlename": "", + "name": "Rep. Kurt Schrader [D-OR5]", + "namemod": "", + "nickname": "", + "osid": "N00030071", + "pvsid": "10813", + "sortname": "Schrader, Kurt (Rep.) [D-OR5]", + "twitterid": "RepSchrader", + "youtubeid": "repkurtschrader" + }, + "phone": "202-225-5711", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "OR", + "title": "Rep.", + "title_long": "Representative", + "website": "https://schrader.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Arizona's 6th congressional district", + "district": 6, + "enddate": "2023-01-03", + "extra": { + "address": "304 Cannon House Office Building Washington DC 20515-0306", + "office": "304 Cannon House Office Building", + "rss_url": "http://schweikert.house.gov/rss/press-releases.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "S001183", + "birthday": "1962-03-03", + "cspanid": 5205, + "firstname": "David", + "gender": "male", + "gender_label": "Male", + "lastname": "Schweikert", + "link": "https://www.govtrack.us/congress/members/david_schweikert/412399", + "middlename": "", + "name": "Rep. David Schweikert [R-AZ6]", + "namemod": "", + "nickname": "", + "osid": "N00006460", + "pvsid": "106387", + "sortname": "Schweikert, David (Rep.) [R-AZ6]", + "twitterid": "RepDavid", + "youtubeid": "RepDavidSchweikert" + }, + "phone": "202-225-2190", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "AZ", + "title": "Rep.", + "title_long": "Representative", + "website": "https://schweikert.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Georgia's 8th congressional district", + "district": 8, + "enddate": "2023-01-03", + "extra": { + "address": "2417 Rayburn House Office Building Washington DC 20515-1008", + "office": "2417 Rayburn House Office Building", + "rss_url": "http://austinscott.house.gov/index.php?format=feed&type=rss" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "S001189", + "birthday": "1969-12-10", + "cspanid": 623344, + "firstname": "Austin", + "gender": "male", + "gender_label": "Male", + "lastname": "Scott", + "link": "https://www.govtrack.us/congress/members/austin_scott/412417", + "middlename": "", + "name": "Rep. Austin Scott [R-GA8]", + "namemod": "", + "nickname": "", + "osid": "N00032457", + "pvsid": "11812", + "sortname": "Scott, Austin (Rep.) [R-GA8]", + "twitterid": "AustinScottGA08", + "youtubeid": "RepAustinScott" + }, + "phone": "202-225-6531", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "GA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://austinscott.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Georgia's 13th congressional district", + "district": 13, + "enddate": "2023-01-03", + "extra": { + "address": "468 Cannon House Office Building Washington DC 20515-1013", + "office": "468 Cannon House Office Building", + "rss_url": "http://davidscott.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "S001157", + "birthday": "1945-06-27", + "cspanid": 1003567, + "firstname": "David", + "gender": "male", + "gender_label": "Male", + "lastname": "Scott", + "link": "https://www.govtrack.us/congress/members/david_scott/400363", + "middlename": "", + "name": "Rep. David Scott [D-GA13]", + "namemod": "", + "nickname": "", + "osid": "N00024871", + "pvsid": "7826", + "sortname": "Scott, David (Rep.) [D-GA13]", + "twitterid": "RepDavidScott", + "youtubeid": "RepDavidScott" + }, + "phone": "202-225-2939", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "GA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://davidscott.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Virginia's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "2328 Rayburn House Office Building Washington DC 20515-4603", + "office": "2328 Rayburn House Office Building", + "rss_url": "http://www.house.gov/index.php?format=feed&type=rss" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "S000185", + "birthday": "1947-04-30", + "cspanid": 25888, + "firstname": "Robert", + "gender": "male", + "gender_label": "Male", + "lastname": "Scott", + "link": "https://www.govtrack.us/congress/members/robert_scott/400364", + "middlename": "C.", + "name": "Rep. Robert “Bobby” Scott [D-VA3]", + "namemod": "", + "nickname": "Bobby", + "osid": "N00002147", + "pvsid": "27117", + "sortname": "Scott, Robert “Bobby” (Rep.) [D-VA3]", + "twitterid": "BobbyScott", + "youtubeid": "repbobbyscott" + }, + "phone": "202-225-8351", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "VA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://bobbyscott.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Alabama's 7th congressional district", + "district": 7, + "enddate": "2023-01-03", + "extra": { + "address": "2201 Rayburn House Office Building Washington DC 20515-0107", + "office": "2201 Rayburn House Office Building", + "rss_url": "http://sewell.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "S001185", + "birthday": "1965-01-01", + "cspanid": 623257, + "firstname": "Terri", + "gender": "female", + "gender_label": "Female", + "lastname": "Sewell", + "link": "https://www.govtrack.us/congress/members/terri_sewell/412396", + "middlename": "A.", + "name": "Rep. Terri Sewell [D-AL7]", + "namemod": "", + "nickname": "", + "osid": "N00030622", + "pvsid": "121621", + "sortname": "Sewell, Terri (Rep.) [D-AL7]", + "twitterid": "RepTerriSewell", + "youtubeid": "RepSewell" + }, + "phone": "202-225-2665", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "AL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://sewell.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 30th congressional district", + "district": 30, + "enddate": "2023-01-03", + "extra": { + "address": "2181 Rayburn House Office Building Washington DC 20515-0530", + "office": "2181 Rayburn House Office Building", + "rss_url": "http://bradsherman.house.gov/press-releases-and-columns/rss.shtml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "S000344", + "birthday": "1954-10-24", + "cspanid": 45124, + "firstname": "Brad", + "gender": "male", + "gender_label": "Male", + "lastname": "Sherman", + "link": "https://www.govtrack.us/congress/members/brad_sherman/400371", + "middlename": "J.", + "name": "Rep. Brad Sherman [D-CA30]", + "namemod": "", + "nickname": "", + "osid": "N00006897", + "pvsid": "142", + "sortname": "Sherman, Brad (Rep.) [D-CA30]", + "twitterid": "BradSherman", + "youtubeid": "shermanca27" + }, + "phone": "202-225-5911", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://sherman.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Idaho's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "2084 Rayburn House Office Building Washington DC 20515-1202", + "office": "2084 Rayburn House Office Building", + "rss_url": "http://simpson.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "S001148", + "birthday": "1950-09-08", + "cspanid": 57889, + "firstname": "Michael", + "gender": "male", + "gender_label": "Male", + "lastname": "Simpson", + "link": "https://www.govtrack.us/congress/members/michael_simpson/400376", + "middlename": "K.", + "name": "Rep. Michael “Mike” Simpson [R-ID2]", + "namemod": "", + "nickname": "Mike", + "osid": "N00006263", + "pvsid": "2917", + "sortname": "Simpson, Michael “Mike” (Rep.) [R-ID2]", + "twitterid": "CongMikeSimpson", + "youtubeid": "CongMikeSimpson" + }, + "phone": "202-225-5531", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "ID", + "title": "Rep.", + "title_long": "Representative", + "website": "https://simpson.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New Jersey's 8th congressional district", + "district": 8, + "enddate": "2023-01-03", + "extra": { + "address": "2268 Rayburn House Office Building Washington DC 20515-3008", + "office": "2268 Rayburn House Office Building", + "rss_url": "http://sires.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "S001165", + "birthday": "1951-01-26", + "cspanid": 1022293, + "firstname": "Albio", + "gender": "male", + "gender_label": "Male", + "lastname": "Sires", + "link": "https://www.govtrack.us/congress/members/albio_sires/412186", + "middlename": "", + "name": "Rep. Albio Sires [D-NJ8]", + "namemod": "", + "nickname": "", + "osid": "N00027523", + "pvsid": "22510", + "sortname": "Sires, Albio (Rep.) [D-NJ8]", + "twitterid": "RepSires", + "youtubeid": "RepSiresNJ13" + }, + "phone": "202-225-7919", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NJ", + "title": "Rep.", + "title_long": "Representative", + "website": "https://sires.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Washington's 9th congressional district", + "district": 9, + "enddate": "2023-01-03", + "extra": { + "address": "2264 Rayburn House Office Building Washington DC 20515-4709", + "office": "2264 Rayburn House Office Building", + "rss_url": "http://www.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "S000510", + "birthday": "1965-06-15", + "cspanid": 44329, + "firstname": "Adam", + "gender": "male", + "gender_label": "Male", + "lastname": "Smith", + "link": "https://www.govtrack.us/congress/members/adam_smith/400379", + "middlename": "", + "name": "Rep. Adam Smith [D-WA9]", + "namemod": "", + "nickname": "", + "osid": "N00007833", + "pvsid": "845", + "sortname": "Smith, Adam (Rep.) [D-WA9]", + "twitterid": "RepAdamSmith", + "youtubeid": "CongressmanAdamSmith" + }, + "phone": "202-225-8901", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "WA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://adamsmith.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Nebraska's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "502 Cannon House Office Building Washington DC 20515-2703", + "office": "502 Cannon House Office Building", + "rss_url": "http://adriansmith.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "S001172", + "birthday": "1970-12-19", + "cspanid": 1022845, + "firstname": "Adrian", + "gender": "male", + "gender_label": "Male", + "lastname": "Smith", + "link": "https://www.govtrack.us/congress/members/adrian_smith/412217", + "middlename": "", + "name": "Rep. Adrian Smith [R-NE3]", + "namemod": "", + "nickname": "", + "osid": "N00027623", + "pvsid": "21284", + "sortname": "Smith, Adrian (Rep.) [R-NE3]", + "twitterid": "RepAdrianSmith", + "youtubeid": "RepAdrianSmith" + }, + "phone": "202-225-6435", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NE", + "title": "Rep.", + "title_long": "Representative", + "website": "https://adriansmith.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New Jersey's 4th congressional district", + "district": 4, + "enddate": "2023-01-03", + "extra": { + "address": "2373 Rayburn House Office Building Washington DC 20515-3004", + "office": "2373 Rayburn House Office Building", + "rss_url": "http://chrissmith.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "S000522", + "birthday": "1953-03-04", + "cspanid": 6411, + "firstname": "Christopher", + "gender": "male", + "gender_label": "Male", + "lastname": "Smith", + "link": "https://www.govtrack.us/congress/members/christopher_smith/400380", + "middlename": "H.", + "name": "Rep. Christopher “Chris” Smith [R-NJ4]", + "namemod": "", + "nickname": "Chris", + "osid": "N00009816", + "pvsid": "26952", + "sortname": "Smith, Christopher “Chris” (Rep.) [R-NJ4]", + "twitterid": "RepChrisSmith", + "youtubeid": "USRepChrisSmith" + }, + "phone": "202-225-3765", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NJ", + "title": "Rep.", + "title_long": "Representative", + "website": "https://chrissmith.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 14th congressional district", + "district": 14, + "enddate": "2023-01-03", + "extra": { + "address": "2465 Rayburn House Office Building Washington DC 20515-0514", + "office": "2465 Rayburn House Office Building", + "rss_url": "http://speier.house.gov/index.php?format=feed&type=rss" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "S001175", + "birthday": "1950-05-14", + "cspanid": 1027627, + "firstname": "Jackie", + "gender": "female", + "gender_label": "Female", + "lastname": "Speier", + "link": "https://www.govtrack.us/congress/members/jackie_speier/412259", + "middlename": "", + "name": "Rep. Jackie Speier [D-CA14]", + "namemod": "", + "nickname": "", + "osid": "N00029649", + "pvsid": "8425", + "sortname": "Speier, Jackie (Rep.) [D-CA14]", + "twitterid": "RepSpeier", + "youtubeid": "jackiespeierca12" + }, + "phone": "202-225-3531", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://speier.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Ohio's 15th congressional district", + "district": 15, + "enddate": "2023-01-03", + "extra": { + "address": "2234 Rayburn House Office Building Washington DC 20515-3515", + "office": "2234 Rayburn House Office Building", + "rss_url": "http://stivers.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "S001187", + "birthday": "1965-03-24", + "cspanid": 62320, + "firstname": "Steve", + "gender": "male", + "gender_label": "Male", + "lastname": "Stivers", + "link": "https://www.govtrack.us/congress/members/steve_stivers/412461", + "middlename": "", + "name": "Rep. Steve Stivers [R-OH15]", + "namemod": "", + "nickname": "", + "osid": "N00029574", + "pvsid": "45333", + "sortname": "Stivers, Steve (Rep.) [R-OH15]", + "twitterid": "RepSteveStivers", + "youtubeid": "RepSteveStivers" + }, + "phone": "202-225-2015", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "OH", + "title": "Rep.", + "title_long": "Representative", + "website": "https://stivers.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 38th congressional district", + "district": 38, + "enddate": "2023-01-03", + "extra": { + "address": "2329 Rayburn House Office Building Washington DC 20515-0538", + "office": "2329 Rayburn House Office Building", + "rss_url": "http://lindasanchez.house.gov/index.php?format=feed&type=rss" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "S001156", + "birthday": "1969-01-28", + "cspanid": 1003554, + "firstname": "Linda", + "gender": "female", + "gender_label": "Female", + "lastname": "Sánchez", + "link": "https://www.govtrack.us/congress/members/linda_sanchez/400355", + "middlename": "T.", + "name": "Rep. Linda Sánchez [D-CA38]", + "namemod": "", + "nickname": "", + "osid": "N00024870", + "pvsid": "29674", + "sortname": "Sánchez, Linda (Rep.) [D-CA38]", + "twitterid": "RepLindaSanchez", + "youtubeid": "LindaTSanchez" + }, + "phone": "202-225-6676", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://lindasanchez.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Mississippi's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "2466 Rayburn House Office Building Washington DC 20515-2402", + "office": "2466 Rayburn House Office Building", + "rss_url": "http://benniethompson.house.gov/index.php?format=feed&type=rss" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "T000193", + "birthday": "1948-01-28", + "cspanid": 7304, + "firstname": "Bennie", + "gender": "male", + "gender_label": "Male", + "lastname": "Thompson", + "link": "https://www.govtrack.us/congress/members/bennie_thompson/400402", + "middlename": "G.", + "name": "Rep. Bennie Thompson [D-MS2]", + "namemod": "", + "nickname": "", + "osid": "N00003288", + "pvsid": "26929", + "sortname": "Thompson, Bennie (Rep.) [D-MS2]", + "twitterid": "BennieGThompson", + "youtubeid": "RepBennieThompson" + }, + "phone": "202-225-5876", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MS", + "title": "Rep.", + "title_long": "Representative", + "website": "https://benniethompson.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 5th congressional district", + "district": 5, + "enddate": "2023-01-03", + "extra": { + "address": "268 Cannon House Office Building Washington DC 20515-0505", + "office": "268 Cannon House Office Building", + "rss_url": "http://mikethompson.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "T000460", + "birthday": "1951-01-24", + "cspanid": 57872, + "firstname": "Mike", + "gender": "male", + "gender_label": "Male", + "lastname": "Thompson", + "link": "https://www.govtrack.us/congress/members/mike_thompson/400403", + "middlename": "Michael", + "name": "Rep. Mike Thompson [D-CA5]", + "namemod": "", + "nickname": "", + "osid": "N00007419", + "pvsid": "3564", + "sortname": "Thompson, Mike (Rep.) [D-CA5]", + "twitterid": "RepThompson", + "youtubeid": "CongressmanMThompson" + }, + "phone": "202-225-3311", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://mikethompson.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Pennsylvania's 15th congressional district", + "district": 15, + "enddate": "2023-01-03", + "extra": { + "address": "400 Cannon House Office Building Washington DC 20515-3815", + "office": "400 Cannon House Office Building", + "rss_url": "http://thompson.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "T000467", + "birthday": "1959-07-27", + "cspanid": 1031359, + "firstname": "Glenn", + "gender": "male", + "gender_label": "Male", + "lastname": "Thompson", + "link": "https://www.govtrack.us/congress/members/glenn_thompson/412317", + "middlename": "", + "name": "Rep. Glenn Thompson [R-PA15]", + "namemod": "", + "nickname": "", + "osid": "N00029736", + "pvsid": "24046", + "sortname": "Thompson, Glenn (Rep.) [R-PA15]", + "twitterid": "CongressmanGT", + "youtubeid": "CongressmanGT" + }, + "phone": "202-225-5121", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "PA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://thompson.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New York's 20th congressional district", + "district": 20, + "enddate": "2023-01-03", + "extra": { + "address": "2369 Rayburn House Office Building Washington DC 20515-3220", + "office": "2369 Rayburn House Office Building", + "rss_url": "http://tonko.house.gov/rss/press-releases.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "T000469", + "birthday": "1949-06-18", + "cspanid": 1031353, + "firstname": "Paul", + "gender": "male", + "gender_label": "Male", + "lastname": "Tonko", + "link": "https://www.govtrack.us/congress/members/paul_tonko/412319", + "middlename": "", + "name": "Rep. Paul Tonko [D-NY20]", + "namemod": "", + "nickname": "", + "osid": "N00030196", + "pvsid": "4403", + "sortname": "Tonko, Paul (Rep.) [D-NY20]", + "twitterid": "RepPaulTonko", + "youtubeid": "reppaultonko" + }, + "phone": "202-225-5076", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NY", + "title": "Rep.", + "title_long": "Representative", + "website": "https://tonko.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Ohio's 10th congressional district", + "district": 10, + "enddate": "2023-01-03", + "extra": { + "address": "2082 Rayburn House Office Building Washington DC 20515-3510", + "office": "2082 Rayburn House Office Building", + "rss_url": "http://turner.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "T000463", + "birthday": "1960-01-11", + "cspanid": 1003607, + "firstname": "Michael", + "gender": "male", + "gender_label": "Male", + "lastname": "Turner", + "link": "https://www.govtrack.us/congress/members/michael_turner/400411", + "middlename": "R.", + "name": "Rep. Michael Turner [R-OH10]", + "namemod": "", + "nickname": "", + "osid": "N00025175", + "pvsid": "45519", + "sortname": "Turner, Michael (Rep.) [R-OH10]", + "twitterid": "RepMikeTurner", + "youtubeid": "CongressmanTurner" + }, + "phone": "202-225-6465", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "OH", + "title": "Rep.", + "title_long": "Representative", + "website": "https://turner.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Michigan's 6th congressional district", + "district": 6, + "enddate": "2023-01-03", + "extra": { + "address": "2183 Rayburn House Office Building Washington DC 20515-2206", + "office": "2183 Rayburn House Office Building", + "rss_url": "http://www.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "U000031", + "birthday": "1953-04-23", + "cspanid": 12127, + "firstname": "Fred", + "gender": "male", + "gender_label": "Male", + "lastname": "Upton", + "link": "https://www.govtrack.us/congress/members/fred_upton/400414", + "middlename": "Stephen", + "name": "Rep. Fred Upton [R-MI6]", + "namemod": "", + "nickname": "", + "osid": "N00004133", + "pvsid": "26906", + "sortname": "Upton, Fred (Rep.) [R-MI6]", + "twitterid": "RepFredUpton", + "youtubeid": "RepFredUpton" + }, + "phone": "202-225-3761", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MI", + "title": "Rep.", + "title_long": "Representative", + "website": "https://upton.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New York's 7th congressional district", + "district": 7, + "enddate": "2023-01-03", + "extra": { + "address": "2302 Rayburn House Office Building Washington DC 20515-3207", + "office": "2302 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "V000081", + "birthday": "1953-03-28", + "cspanid": 26160, + "firstname": "Nydia", + "gender": "female", + "gender_label": "Female", + "lastname": "Velázquez", + "link": "https://www.govtrack.us/congress/members/nydia_velazquez/400416", + "middlename": "M.", + "name": "Rep. Nydia Velázquez [D-NY7]", + "namemod": "", + "nickname": "", + "osid": "N00001102", + "pvsid": "26975", + "sortname": "Velázquez, Nydia (Rep.) [D-NY7]", + "twitterid": "NydiaVelazquez", + "youtubeid": "nydiavelazquez" + }, + "phone": "202-225-2361", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NY", + "title": "Rep.", + "title_long": "Representative", + "website": "https://velazquez.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Michigan's 7th congressional district", + "district": 7, + "enddate": "2023-01-03", + "extra": { + "address": "2266 Rayburn House Office Building Washington DC 20515-2207", + "office": "2266 Rayburn House Office Building", + "rss_url": "http://walberg.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "W000798", + "birthday": "1951-04-12", + "cspanid": 1022844, + "firstname": "Tim", + "gender": "male", + "gender_label": "Male", + "lastname": "Walberg", + "link": "https://www.govtrack.us/congress/members/tim_walberg/412213", + "middlename": "", + "name": "Rep. Tim Walberg [R-MI7]", + "namemod": "", + "nickname": "", + "osid": "N00026368", + "pvsid": "8618", + "sortname": "Walberg, Tim (Rep.) [R-MI7]", + "twitterid": "RepWalberg", + "youtubeid": "RepWalberg" + }, + "phone": "202-225-6276", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MI", + "title": "Rep.", + "title_long": "Representative", + "website": "https://walberg.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Florida's 23rd congressional district", + "district": 23, + "enddate": "2023-01-03", + "extra": { + "address": "1114 Longworth House Office Building Washington DC 20515-0923", + "office": "1114 Longworth House Office Building", + "rss_url": "http://wassermanschultz.house.gov/atom.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "W000797", + "birthday": "1966-09-27", + "cspanid": 86882, + "firstname": "Debbie", + "gender": "female", + "gender_label": "Female", + "lastname": "Wasserman Schultz", + "link": "https://www.govtrack.us/congress/members/debbie_wasserman_schultz/400623", + "middlename": "", + "name": "Rep. Debbie Wasserman Schultz [D-FL23]", + "namemod": "", + "nickname": "", + "osid": "N00026106", + "pvsid": "24301", + "sortname": "Wasserman Schultz, Debbie (Rep.) [D-FL23]", + "twitterid": "RepDWStweets", + "youtubeid": "RepWassermanSchultz" + }, + "phone": "202-225-7931", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "FL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://wassermanschultz.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 43rd congressional district", + "district": 43, + "enddate": "2023-01-03", + "extra": { + "address": "2221 Rayburn House Office Building Washington DC 20515-0543", + "office": "2221 Rayburn House Office Building", + "rss_url": "http://waters.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "W000187", + "birthday": "1938-08-15", + "cspanid": 1953, + "firstname": "Maxine", + "gender": "female", + "gender_label": "Female", + "lastname": "Waters", + "link": "https://www.govtrack.us/congress/members/maxine_waters/400422", + "middlename": "", + "name": "Rep. Maxine Waters [D-CA43]", + "namemod": "", + "nickname": "", + "osid": "N00006690", + "pvsid": "26759", + "sortname": "Waters, Maxine (Rep.) [D-CA43]", + "twitterid": "RepMaxineWaters", + "youtubeid": "MaxineWaters" + }, + "phone": "202-225-2201", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://waters.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Florida's 11th congressional district", + "district": 11, + "enddate": "2023-01-03", + "extra": { + "address": "2184 Rayburn House Office Building Washington DC 20515-0911", + "office": "2184 Rayburn House Office Building", + "rss_url": "http://webster.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "W000806", + "birthday": "1949-04-27", + "cspanid": 30504, + "firstname": "Daniel", + "gender": "male", + "gender_label": "Male", + "lastname": "Webster", + "link": "https://www.govtrack.us/congress/members/daniel_webster/412410", + "middlename": "", + "name": "Rep. Daniel Webster [R-FL11]", + "namemod": "", + "nickname": "", + "osid": "N00026335", + "pvsid": "24302", + "sortname": "Webster, Daniel (Rep.) [R-FL11]", + "twitterid": "RepWebster", + "youtubeid": "repdanwebster" + }, + "phone": "202-225-1002", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "FL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://webster.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Vermont At Large", + "district": 0, + "enddate": "2023-01-03", + "extra": { + "address": "2187 Rayburn House Office Building Washington DC 20515-4500", + "office": "2187 Rayburn House Office Building", + "rss_url": "http://www.welch.house.gov/index.php?format=feed&type=rss" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "W000800", + "birthday": "1947-05-02", + "cspanid": 1019990, + "firstname": "Peter", + "gender": "male", + "gender_label": "Male", + "lastname": "Welch", + "link": "https://www.govtrack.us/congress/members/peter_welch/412239", + "middlename": "", + "name": "Rep. Peter Welch [D-VT0]", + "namemod": "", + "nickname": "", + "osid": "N00000515", + "pvsid": "51272", + "sortname": "Welch, Peter (Rep.) [D-VT0]", + "twitterid": "PeterWelch", + "youtubeid": "reppeterwelch" + }, + "phone": "202-225-4115", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "VT", + "title": "Rep.", + "title_long": "Representative", + "website": "https://welch.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for South Carolina's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "1436 Longworth House Office Building Washington DC 20515-4002", + "office": "1436 Longworth House Office Building", + "rss_url": "http://joewilson.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "W000795", + "birthday": "1947-07-31", + "cspanid": 1002567, + "firstname": "Joe", + "gender": "male", + "gender_label": "Male", + "lastname": "Wilson", + "link": "https://www.govtrack.us/congress/members/joe_wilson/400433", + "middlename": "G.", + "name": "Rep. Joe Wilson [R-SC2]", + "namemod": "", + "nickname": "", + "osid": "N00024809", + "pvsid": "3985", + "sortname": "Wilson, Joe (Rep.) [R-SC2]", + "twitterid": "RepJoeWilson", + "youtubeid": "RepJoeWilson" + }, + "phone": "202-225-2452", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "SC", + "title": "Rep.", + "title_long": "Representative", + "website": "https://joewilson.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Florida's 24th congressional district", + "district": 24, + "enddate": "2023-01-03", + "extra": { + "address": "2445 Rayburn House Office Building Washington DC 20515-0924", + "office": "2445 Rayburn House Office Building", + "rss_url": "http://wilson.house.gov/common/rss//index.cfm?rss=49" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "W000808", + "birthday": "1942-11-05", + "cspanid": 87016, + "firstname": "Frederica", + "gender": "female", + "gender_label": "Female", + "lastname": "Wilson", + "link": "https://www.govtrack.us/congress/members/frederica_wilson/412412", + "middlename": "S.", + "name": "Rep. Frederica Wilson [D-FL24]", + "namemod": "", + "nickname": "", + "osid": "N00030650", + "pvsid": "17319", + "sortname": "Wilson, Frederica (Rep.) [D-FL24]", + "twitterid": "RepWilson", + "youtubeid": "repfredericawilson" + }, + "phone": "202-225-4506", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "FL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://wilson.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Virginia's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "2055 Rayburn House Office Building Washington DC 20515-4601", + "office": "2055 Rayburn House Office Building", + "rss_url": "http://www.wittman.house.gov/index.php?format=feed&type=rss" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "W000804", + "birthday": "1959-02-03", + "cspanid": 1028089, + "firstname": "Robert", + "gender": "male", + "gender_label": "Male", + "lastname": "Wittman", + "link": "https://www.govtrack.us/congress/members/robert_wittman/412255", + "middlename": "J.", + "name": "Rep. Robert Wittman [R-VA1]", + "namemod": "", + "nickname": "", + "osid": "N00029459", + "pvsid": "58133", + "sortname": "Wittman, Robert (Rep.) [R-VA1]", + "twitterid": "RobWittman", + "youtubeid": "RobWittman" + }, + "phone": "202-225-4261", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "VA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://wittman.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Arkansas's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "2412 Rayburn House Office Building Washington DC 20515-0403", + "office": "2412 Rayburn House Office Building", + "rss_url": "http://womack.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "W000809", + "birthday": "1957-02-18", + "cspanid": 1033625, + "firstname": "Steve", + "gender": "male", + "gender_label": "Male", + "lastname": "Womack", + "link": "https://www.govtrack.us/congress/members/steve_womack/412402", + "middlename": "", + "name": "Rep. Steve Womack [R-AR3]", + "namemod": "", + "nickname": "", + "osid": "N00031857", + "pvsid": "71815", + "sortname": "Womack, Steve (Rep.) [R-AR3]", + "twitterid": "Rep_SteveWomack", + "youtubeid": "CongressmanWomack" + }, + "phone": "202-225-4301", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "AR", + "title": "Rep.", + "title_long": "Representative", + "website": "https://womack.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Kentucky's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "402 Cannon House Office Building Washington DC 20515-1703", + "office": "402 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "Y000062", + "birthday": "1947-11-04", + "cspanid": 1021662, + "firstname": "John", + "gender": "male", + "gender_label": "Male", + "lastname": "Yarmuth", + "link": "https://www.govtrack.us/congress/members/john_yarmuth/412211", + "middlename": "A.", + "name": "Rep. John Yarmuth [D-KY3]", + "namemod": "", + "nickname": "", + "osid": "N00028073", + "pvsid": "58579", + "sortname": "Yarmuth, John (Rep.) [D-KY3]", + "twitterid": "RepJohnYarmuth", + "youtubeid": "RepJohnYarmuth" + }, + "phone": "202-225-5401", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "KY", + "title": "Rep.", + "title_long": "Representative", + "website": "https://yarmuth.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Alaska At Large", + "district": 0, + "enddate": "2023-01-03", + "extra": { + "address": "2314 Rayburn House Office Building Washington DC 20515-0200", + "office": "2314 Rayburn House Office Building", + "rss_url": "http://donyoung.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "Y000033", + "birthday": "1933-06-09", + "cspanid": 1897, + "firstname": "Don", + "gender": "male", + "gender_label": "Male", + "lastname": "Young", + "link": "https://www.govtrack.us/congress/members/don_young/400440", + "middlename": "E.", + "name": "Rep. Don Young [R-AK0]", + "namemod": "", + "nickname": "", + "osid": "N00007999", + "pvsid": "26717", + "sortname": "Young, Don (Rep.) [R-AK0]", + "twitterid": "RepDonYoung", + "youtubeid": "RepDonYoung" + }, + "phone": "202-225-5765", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "AK", + "title": "Rep.", + "title_long": "Representative", + "website": "https://donyoung.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Nevada's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "104 Cannon House Office Building Washington DC 20515-2802", + "office": "104 Cannon House Office Building", + "rss_url": "http://amodei.house.gov/common/rss//?rss=49" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "A000369", + "birthday": "1958-06-12", + "cspanid": 62817, + "firstname": "Mark", + "gender": "male", + "gender_label": "Male", + "lastname": "Amodei", + "link": "https://www.govtrack.us/congress/members/mark_amodei/412500", + "middlename": "E.", + "name": "Rep. Mark Amodei [R-NV2]", + "namemod": "", + "nickname": "", + "osid": "N00031177", + "pvsid": "12537", + "sortname": "Amodei, Mark (Rep.) [R-NV2]", + "twitterid": "MarkAmodeiNV2", + "youtubeid": "markamodeinv2" + }, + "phone": "202-225-6155", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NV", + "title": "Rep.", + "title_long": "Representative", + "website": "https://amodei.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Oregon's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "2231 Rayburn House Office Building Washington DC 20515-3701", + "office": "2231 Rayburn House Office Building", + "rss_url": "http://bonamici.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "B001278", + "birthday": "1954-10-14", + "cspanid": 63966, + "firstname": "Suzanne", + "gender": "female", + "gender_label": "Female", + "lastname": "Bonamici", + "link": "https://www.govtrack.us/congress/members/suzanne_bonamici/412501", + "middlename": "", + "name": "Rep. Suzanne Bonamici [D-OR1]", + "namemod": "", + "nickname": "", + "osid": "N00033474", + "pvsid": "59641", + "sortname": "Bonamici, Suzanne (Rep.) [D-OR1]", + "twitterid": "RepBonamici", + "youtubeid": "RepSuzanneBonamici" + }, + "phone": "202-225-0855", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "OR", + "title": "Rep.", + "title_long": "Representative", + "website": "https://bonamici.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Washington's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "2330 Rayburn House Office Building Washington DC 20515-4701", + "office": "2330 Rayburn House Office Building", + "rss_url": "http://delbene.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "D000617", + "birthday": "1962-02-17", + "cspanid": 1033929, + "firstname": "Suzan", + "gender": "female", + "gender_label": "Female", + "lastname": "DelBene", + "link": "https://www.govtrack.us/congress/members/suzan_delbene/412505", + "middlename": "K.", + "name": "Rep. Suzan DelBene [D-WA1]", + "namemod": "", + "nickname": "", + "osid": "N00030693", + "pvsid": "126272", + "sortname": "DelBene, Suzan (Rep.) [D-WA1]", + "twitterid": "RepDelBene", + "youtubeid": null + }, + "phone": "202-225-6311", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "WA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://delbene.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Kentucky's 4th congressional district", + "district": 4, + "enddate": "2023-01-03", + "extra": { + "address": "2453 Rayburn House Office Building Washington DC 20515-1704", + "office": "2453 Rayburn House Office Building", + "rss_url": "http://massie.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "M001184", + "birthday": "1971-01-13", + "cspanid": 79951, + "firstname": "Thomas", + "gender": "male", + "gender_label": "Male", + "lastname": "Massie", + "link": "https://www.govtrack.us/congress/members/thomas_massie/412503", + "middlename": "", + "name": "Rep. Thomas Massie [R-KY4]", + "namemod": "", + "nickname": "", + "osid": "N00034041", + "pvsid": "132068", + "sortname": "Massie, Thomas (Rep.) [R-KY4]", + "twitterid": "RepThomasMassie", + "youtubeid": "repthomasmassie" + }, + "phone": "202-225-3465", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "KY", + "title": "Rep.", + "title_long": "Representative", + "website": "https://massie.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New Jersey's 10th congressional district", + "district": 10, + "enddate": "2023-01-03", + "extra": { + "address": "106 Cannon House Office Building Washington DC 20515-3010", + "office": "106 Cannon House Office Building", + "rss_url": "http://payne.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "P000604", + "birthday": "1958-12-17", + "cspanid": 65639, + "firstname": "Donald", + "gender": "male", + "gender_label": "Male", + "lastname": "Payne", + "link": "https://www.govtrack.us/congress/members/donald_payne/412506", + "middlename": "M.", + "name": "Rep. Donald Payne [D-NJ10]", + "namemod": "Jr.", + "nickname": "", + "osid": "N00034639", + "pvsid": "90668", + "sortname": "Payne, Donald (Rep.) [D-NJ10]", + "twitterid": "RepDonaldPayne", + "youtubeid": null + }, + "phone": "202-225-3436", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NJ", + "title": "Rep.", + "title_long": "Representative", + "website": "https://payne.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Illinois's 11th congressional district", + "district": 11, + "enddate": "2023-01-03", + "extra": { + "address": "2366 Rayburn House Office Building Washington DC 20515-1311", + "office": "2366 Rayburn House Office Building", + "rss_url": "http://foster.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "F000454", + "birthday": "1955-10-07", + "cspanid": 1027346, + "firstname": "Bill", + "gender": "male", + "gender_label": "Male", + "lastname": "Foster", + "link": "https://www.govtrack.us/congress/members/bill_foster/412257", + "middlename": "", + "name": "Rep. Bill Foster [D-IL11]", + "namemod": "", + "nickname": "", + "osid": "N00029139", + "pvsid": "101632", + "sortname": "Foster, Bill (Rep.) [D-IL11]", + "twitterid": "RepBillFoster", + "youtubeid": "RepBillFoster" + }, + "phone": "202-225-3515", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "IL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://foster.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Nevada's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "2464 Rayburn House Office Building Washington DC 20515-2801", + "office": "2464 Rayburn House Office Building", + "rss_url": "http://titus.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "T000468", + "birthday": "1950-05-23", + "cspanid": 1021622, + "firstname": "Dina", + "gender": "female", + "gender_label": "Female", + "lastname": "Titus", + "link": "https://www.govtrack.us/congress/members/dina_titus/412318", + "middlename": "", + "name": "Rep. Dina Titus [D-NV1]", + "namemod": "", + "nickname": "", + "osid": "N00030191", + "pvsid": "2629", + "sortname": "Titus, Dina (Rep.) [D-NV1]", + "twitterid": "RepDinaTitus", + "youtubeid": "CongresswomanTitus" + }, + "phone": "202-225-5965", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NV", + "title": "Rep.", + "title_long": "Representative", + "website": "https://titus.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "408 Cannon House Office Building Washington DC 20515-0501", + "office": "408 Cannon House Office Building", + "rss_url": "http://lamalfa.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "L000578", + "birthday": "1960-07-02", + "cspanid": 68493, + "firstname": "Doug", + "gender": "male", + "gender_label": "Male", + "lastname": "LaMalfa", + "link": "https://www.govtrack.us/congress/members/doug_lamalfa/412510", + "middlename": "", + "name": "Rep. Doug LaMalfa [R-CA1]", + "namemod": "", + "nickname": "", + "osid": "N00033987", + "pvsid": "29713", + "sortname": "LaMalfa, Doug (Rep.) [R-CA1]", + "twitterid": "RepLaMalfa", + "youtubeid": "RepLaMalfa" + }, + "phone": "202-225-3076", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://lamalfa.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "1527 Longworth House Office Building Washington DC 20515-0502", + "office": "1527 Longworth House Office Building", + "rss_url": "http://huffman.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "H001068", + "birthday": "1964-02-18", + "cspanid": 622431, + "firstname": "Jared", + "gender": "male", + "gender_label": "Male", + "lastname": "Huffman", + "link": "https://www.govtrack.us/congress/members/jared_huffman/412511", + "middlename": "", + "name": "Rep. Jared Huffman [D-CA2]", + "namemod": "", + "nickname": "", + "osid": "N00033030", + "pvsid": "59849", + "sortname": "Huffman, Jared (Rep.) [D-CA2]", + "twitterid": "RepHuffman", + "youtubeid": "rephuffman" + }, + "phone": "202-225-5161", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://huffman.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 7th congressional district", + "district": 7, + "enddate": "2023-01-03", + "extra": { + "address": "172 Cannon House Office Building Washington DC 20515-0507", + "office": "172 Cannon House Office Building", + "rss_url": "http://bera.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "B001287", + "birthday": "1965-03-02", + "cspanid": 1033636, + "firstname": "Ami", + "gender": "male", + "gender_label": "Male", + "lastname": "Bera", + "link": "https://www.govtrack.us/congress/members/ami_bera/412512", + "middlename": "", + "name": "Rep. Ami Bera [D-CA7]", + "namemod": "", + "nickname": "", + "osid": "N00030717", + "pvsid": "120030", + "sortname": "Bera, Ami (Rep.) [D-CA7]", + "twitterid": "RepBera", + "youtubeid": "repamibera" + }, + "phone": "202-225-5716", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://bera.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 15th congressional district", + "district": 15, + "enddate": "2023-01-03", + "extra": { + "address": "174 Cannon House Office Building Washington DC 20515-0515", + "office": "174 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "S001193", + "birthday": "1980-11-16", + "cspanid": 79729, + "firstname": "Eric", + "gender": "male", + "gender_label": "Male", + "lastname": "Swalwell", + "link": "https://www.govtrack.us/congress/members/eric_swalwell/412514", + "middlename": "", + "name": "Rep. Eric Swalwell [D-CA15]", + "namemod": "", + "nickname": "", + "osid": "N00033508", + "pvsid": "129529", + "sortname": "Swalwell, Eric (Rep.) [D-CA15]", + "twitterid": "RepSwalwell", + "youtubeid": "ericswalwell" + }, + "phone": "202-225-5065", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://swalwell.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 26th congressional district", + "district": 26, + "enddate": "2023-01-03", + "extra": { + "address": "2262 Rayburn House Office Building Washington DC 20515-0526", + "office": "2262 Rayburn House Office Building", + "rss_url": "http://juliabrownley.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "B001285", + "birthday": "1952-08-28", + "cspanid": 79783, + "firstname": "Julia", + "gender": "female", + "gender_label": "Female", + "lastname": "Brownley", + "link": "https://www.govtrack.us/congress/members/julia_brownley/412516", + "middlename": "", + "name": "Rep. Julia Brownley [D-CA26]", + "namemod": "", + "nickname": "", + "osid": "N00034254", + "pvsid": "59904", + "sortname": "Brownley, Julia (Rep.) [D-CA26]", + "twitterid": "RepBrownley", + "youtubeid": "RepJuliaBrownley" + }, + "phone": "202-225-5811", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://juliabrownley.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 29th congressional district", + "district": 29, + "enddate": "2023-01-03", + "extra": { + "address": "2438 Rayburn House Office Building Washington DC 20515-0529", + "office": "2438 Rayburn House Office Building", + "rss_url": "http://cardenas.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "C001097", + "birthday": "1963-03-31", + "cspanid": 63934, + "firstname": "Tony", + "gender": "male", + "gender_label": "Male", + "lastname": "Cárdenas", + "link": "https://www.govtrack.us/congress/members/tony_cardenas/412517", + "middlename": "", + "name": "Rep. Tony Cárdenas [D-CA29]", + "namemod": "", + "nickname": "", + "osid": "N00033373", + "pvsid": "9754", + "sortname": "Cárdenas, Tony (Rep.) [D-CA29]", + "twitterid": "RepCardenas", + "youtubeid": "repcardenas" + }, + "phone": "202-225-6131", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://cardenas.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 36th congressional district", + "district": 36, + "enddate": "2023-01-03", + "extra": { + "address": "2342 Rayburn House Office Building Washington DC 20515-0536", + "office": "2342 Rayburn House Office Building", + "rss_url": "http://ruiz.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "R000599", + "birthday": "1972-08-25", + "cspanid": 79727, + "firstname": "Raul", + "gender": "male", + "gender_label": "Male", + "lastname": "Ruiz", + "link": "https://www.govtrack.us/congress/members/raul_ruiz/412519", + "middlename": "", + "name": "Rep. Raul Ruiz [D-CA36]", + "namemod": "", + "nickname": "", + "osid": "N00033510", + "pvsid": "136407", + "sortname": "Ruiz, Raul (Rep.) [D-CA36]", + "twitterid": "RepRaulRuizMD", + "youtubeid": "repraulruiz" + }, + "phone": "202-225-5330", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://ruiz.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 41st congressional district", + "district": 41, + "enddate": "2023-01-03", + "extra": { + "address": "420 Cannon House Office Building Washington DC 20515-0541", + "office": "420 Cannon House Office Building", + "rss_url": "http://takano.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "T000472", + "birthday": "1960-12-10", + "cspanid": 2737, + "firstname": "Mark", + "gender": "male", + "gender_label": "Male", + "lastname": "Takano", + "link": "https://www.govtrack.us/congress/members/mark_takano/412520", + "middlename": "", + "name": "Rep. Mark Takano [D-CA41]", + "namemod": "", + "nickname": "", + "osid": "N00006701", + "pvsid": "22337", + "sortname": "Takano, Mark (Rep.) [D-CA41]", + "twitterid": "RepMarkTakano", + "youtubeid": "RepMarkTakano" + }, + "phone": "202-225-2305", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://takano.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 47th congressional district", + "district": 47, + "enddate": "2023-01-03", + "extra": { + "address": "108 Cannon House Office Building Washington DC 20515-0547", + "office": "108 Cannon House Office Building", + "rss_url": "http://lowenthal.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "L000579", + "birthday": "1941-03-08", + "cspanid": 93815, + "firstname": "Alan", + "gender": "male", + "gender_label": "Male", + "lastname": "Lowenthal", + "link": "https://www.govtrack.us/congress/members/alan_lowenthal/412521", + "middlename": "S.", + "name": "Rep. Alan Lowenthal [D-CA47]", + "namemod": "", + "nickname": "", + "osid": "N00033274", + "pvsid": "16469", + "sortname": "Lowenthal, Alan (Rep.) [D-CA47]", + "twitterid": "RepLowenthal", + "youtubeid": "RepLowenthal" + }, + "phone": "202-225-7924", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://lowenthal.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 51st congressional district", + "district": 51, + "enddate": "2023-01-03", + "extra": { + "address": "2244 Rayburn House Office Building Washington DC 20515-0551", + "office": "2244 Rayburn House Office Building", + "rss_url": "http://vargas.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "V000130", + "birthday": "1961-03-07", + "cspanid": 8297, + "firstname": "Juan", + "gender": "male", + "gender_label": "Male", + "lastname": "Vargas", + "link": "https://www.govtrack.us/congress/members/juan_vargas/412522", + "middlename": "", + "name": "Rep. Juan Vargas [D-CA51]", + "namemod": "", + "nickname": "", + "osid": "N00007021", + "pvsid": "29100", + "sortname": "Vargas, Juan (Rep.) [D-CA51]", + "twitterid": "RepJuanVargas", + "youtubeid": "RepJuanVargas" + }, + "phone": "202-225-8045", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://vargas.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 52nd congressional district", + "district": 52, + "enddate": "2023-01-03", + "extra": { + "address": "1201 Longworth House Office Building Washington DC 20515-0552", + "office": "1201 Longworth House Office Building", + "rss_url": "http://scottpeters.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "P000608", + "birthday": "1958-06-17", + "cspanid": 79661, + "firstname": "Scott", + "gender": "male", + "gender_label": "Male", + "lastname": "Peters", + "link": "https://www.govtrack.us/congress/members/scott_peters/412523", + "middlename": "H.", + "name": "Rep. Scott Peters [D-CA52]", + "namemod": "", + "nickname": "", + "osid": "N00033591", + "pvsid": "70351", + "sortname": "Peters, Scott (Rep.) [D-CA52]", + "twitterid": "RepScottPeters", + "youtubeid": null + }, + "phone": "202-225-0508", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://scottpeters.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Florida's 21st congressional district", + "district": 21, + "enddate": "2023-01-03", + "extra": { + "address": "2305 Rayburn House Office Building Washington DC 20515-0921", + "office": "2305 Rayburn House Office Building", + "rss_url": "http://frankel.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "F000462", + "birthday": "1948-05-16", + "cspanid": 623714, + "firstname": "Lois", + "gender": "female", + "gender_label": "Female", + "lastname": "Frankel", + "link": "https://www.govtrack.us/congress/members/lois_frankel/412529", + "middlename": "", + "name": "Rep. Lois Frankel [D-FL21]", + "namemod": "", + "nickname": "", + "osid": "N00002893", + "pvsid": "8102", + "sortname": "Frankel, Lois (Rep.) [D-FL21]", + "twitterid": "RepLoisFrankel", + "youtubeid": "reploisfrankel" + }, + "phone": "202-225-9890", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "FL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://frankel.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Illinois's 13th congressional district", + "district": 13, + "enddate": "2023-01-03", + "extra": { + "address": "2079 Rayburn House Office Building Washington DC 20515-1313", + "office": "2079 Rayburn House Office Building", + "rss_url": "http://rodneydavis.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "D000619", + "birthday": "1970-01-05", + "cspanid": 68337, + "firstname": "Rodney", + "gender": "male", + "gender_label": "Male", + "lastname": "Davis", + "link": "https://www.govtrack.us/congress/members/rodney_davis/412536", + "middlename": "", + "name": "Rep. Rodney Davis [R-IL13]", + "namemod": "", + "nickname": "", + "osid": "N00034784", + "pvsid": "9622", + "sortname": "Davis, Rodney (Rep.) [R-IL13]", + "twitterid": "RodneyDavis", + "youtubeid": "RepRodneyDavis" + }, + "phone": "202-225-2371", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "IL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://rodneydavis.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Illinois's 17th congressional district", + "district": 17, + "enddate": "2023-01-03", + "extra": { + "address": "1233 Longworth House Office Building Washington DC 20515-1317", + "office": "1233 Longworth House Office Building", + "rss_url": "http://bustos.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "B001286", + "birthday": "1961-10-17", + "cspanid": 63949, + "firstname": "Cheri", + "gender": "female", + "gender_label": "Female", + "lastname": "Bustos", + "link": "https://www.govtrack.us/congress/members/cheri_bustos/412537", + "middlename": "", + "name": "Rep. Cheri Bustos [D-IL17]", + "namemod": "", + "nickname": "", + "osid": "N00033390", + "pvsid": "134964", + "sortname": "Bustos, Cheri (Rep.) [D-IL17]", + "twitterid": "RepCheri", + "youtubeid": "RepCheri" + }, + "phone": "202-225-5905", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "IL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://bustos.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Indiana's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "466 Cannon House Office Building Washington DC 20515-1402", + "office": "466 Cannon House Office Building", + "rss_url": "http://walorski.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "W000813", + "birthday": "1963-08-17", + "cspanid": 95005, + "firstname": "Jackie", + "gender": "female", + "gender_label": "Female", + "lastname": "Walorski", + "link": "https://www.govtrack.us/congress/members/jackie_walorski/412538", + "middlename": "", + "name": "Rep. Jackie Walorski [R-IN2]", + "namemod": "", + "nickname": "", + "osid": "N00031226", + "pvsid": "34205", + "sortname": "Walorski, Jackie (Rep.) [R-IN2]", + "twitterid": "RepWalorski", + "youtubeid": "repwalorski" + }, + "phone": "202-225-3915", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "IN", + "title": "Rep.", + "title_long": "Representative", + "website": "https://walorski.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Kentucky's 6th congressional district", + "district": 6, + "enddate": "2023-01-03", + "extra": { + "address": "2430 Rayburn House Office Building Washington DC 20515-1706", + "office": "2430 Rayburn House Office Building", + "rss_url": "http://barr.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "B001282", + "birthday": "1973-07-24", + "cspanid": 61848, + "firstname": "Garland", + "gender": "male", + "gender_label": "Male", + "lastname": "Barr", + "link": "https://www.govtrack.us/congress/members/garland_barr/412541", + "middlename": "", + "name": "Rep. Garland “Andy” Barr [R-KY6]", + "namemod": "", + "nickname": "Andy", + "osid": "N00031233", + "pvsid": "117290", + "sortname": "Barr, Garland “Andy” (Rep.) [R-KY6]", + "twitterid": "RepAndyBarr", + "youtubeid": "RepAndyBarr" + }, + "phone": "202-225-4706", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "KY", + "title": "Rep.", + "title_long": "Representative", + "website": "https://barr.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Michigan's 5th congressional district", + "district": 5, + "enddate": "2023-01-03", + "extra": { + "address": "200 Cannon House Office Building Washington DC 20515-2205", + "office": "200 Cannon House Office Building", + "rss_url": "http://dankildee.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "K000380", + "birthday": "1958-08-11", + "cspanid": 623723, + "firstname": "Daniel", + "gender": "male", + "gender_label": "Male", + "lastname": "Kildee", + "link": "https://www.govtrack.us/congress/members/daniel_kildee/412546", + "middlename": "T.", + "name": "Rep. Daniel Kildee [D-MI5]", + "namemod": "", + "nickname": "", + "osid": "N00033395", + "pvsid": "136102", + "sortname": "Kildee, Daniel (Rep.) [D-MI5]", + "twitterid": "RepDanKildee", + "youtubeid": "RepDanKildee" + }, + "phone": "202-225-3611", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MI", + "title": "Rep.", + "title_long": "Representative", + "website": "https://dankildee.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Missouri's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "2350 Rayburn House Office Building Washington DC 20515-2502", + "office": "2350 Rayburn House Office Building", + "rss_url": "http://wagner.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "W000812", + "birthday": "1962-09-13", + "cspanid": 82702, + "firstname": "Ann", + "gender": "female", + "gender_label": "Female", + "lastname": "Wagner", + "link": "https://www.govtrack.us/congress/members/ann_wagner/412548", + "middlename": "", + "name": "Rep. Ann Wagner [R-MO2]", + "namemod": "", + "nickname": "", + "osid": "N00033106", + "pvsid": "136083", + "sortname": "Wagner, Ann (Rep.) [R-MO2]", + "twitterid": "RepAnnWagner", + "youtubeid": null + }, + "phone": "202-225-1621", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MO", + "title": "Rep.", + "title_long": "Representative", + "website": "https://wagner.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for North Carolina's 8th congressional district", + "district": 8, + "enddate": "2023-01-03", + "extra": { + "address": "2112 Rayburn House Office Building Washington DC 20515-3308", + "office": "2112 Rayburn House Office Building", + "rss_url": "http://hudson.house.gov/rss.xml" + }, + "leadership_title": "House Republican Conference Secretary", + "party": "Republican", + "person": { + "bioguideid": "H001067", + "birthday": "1971-11-04", + "cspanid": 79622, + "firstname": "Richard", + "gender": "male", + "gender_label": "Male", + "lastname": "Hudson", + "link": "https://www.govtrack.us/congress/members/richard_hudson/412550", + "middlename": "", + "name": "Rep. Richard Hudson [R-NC8]", + "namemod": "", + "nickname": "", + "osid": "N00033630", + "pvsid": "136448", + "sortname": "Hudson, Richard (Rep.) [R-NC8]", + "twitterid": "RepRichHudson", + "youtubeid": "RepRichHudson" + }, + "phone": "202-225-3715", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NC", + "title": "Rep.", + "title_long": "Representative", + "website": "https://hudson.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New Hampshire's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "320 Cannon House Office Building Washington DC 20515-2902", + "office": "320 Cannon House Office Building", + "rss_url": "http://kuster.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "K000382", + "birthday": "1956-09-05", + "cspanid": 62650, + "firstname": "Ann", + "gender": "female", + "gender_label": "Female", + "lastname": "Kuster", + "link": "https://www.govtrack.us/congress/members/ann_kuster/412557", + "middlename": "M.", + "name": "Rep. Ann Kuster [D-NH2]", + "namemod": "", + "nickname": "", + "osid": "N00030875", + "pvsid": "122256", + "sortname": "Kuster, Ann (Rep.) [D-NH2]", + "twitterid": "RepAnnieKuster", + "youtubeid": "RepKuster" + }, + "phone": "202-225-5206", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NH", + "title": "Rep.", + "title_long": "Representative", + "website": "https://kuster.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New York's 6th congressional district", + "district": 6, + "enddate": "2023-01-03", + "extra": { + "address": "2209 Rayburn House Office Building Washington DC 20515-3206", + "office": "2209 Rayburn House Office Building", + "rss_url": "http://meng.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "M001188", + "birthday": "1975-10-01", + "cspanid": 68411, + "firstname": "Grace", + "gender": "female", + "gender_label": "Female", + "lastname": "Meng", + "link": "https://www.govtrack.us/congress/members/grace_meng/412560", + "middlename": "", + "name": "Rep. Grace Meng [D-NY6]", + "namemod": "", + "nickname": "", + "osid": "N00034547", + "pvsid": "69157", + "sortname": "Meng, Grace (Rep.) [D-NY6]", + "twitterid": "RepGraceMeng", + "youtubeid": null + }, + "phone": "202-225-2601", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NY", + "title": "Rep.", + "title_long": "Representative", + "website": "https://meng.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New York's 8th congressional district", + "district": 8, + "enddate": "2023-01-03", + "extra": { + "address": "2433 Rayburn House Office Building Washington DC 20515-3208", + "office": "2433 Rayburn House Office Building", + "rss_url": "http://jeffries.house.gov/rss.xml" + }, + "leadership_title": "House Democratic Caucus Chair", + "party": "Democrat", + "person": { + "bioguideid": "J000294", + "birthday": "1970-08-04", + "cspanid": 79612, + "firstname": "Hakeem", + "gender": "male", + "gender_label": "Male", + "lastname": "Jeffries", + "link": "https://www.govtrack.us/congress/members/hakeem_jeffries/412561", + "middlename": "S.", + "name": "Rep. Hakeem Jeffries [D-NY8]", + "namemod": "", + "nickname": "", + "osid": "N00033640", + "pvsid": "55285", + "sortname": "Jeffries, Hakeem (Rep.) [D-NY8]", + "twitterid": "RepJeffries", + "youtubeid": null + }, + "phone": "202-225-5936", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NY", + "title": "Rep.", + "title_long": "Representative", + "website": "https://jeffries.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New York's 18th congressional district", + "district": 18, + "enddate": "2023-01-03", + "extra": { + "address": "464 Cannon House Office Building Washington DC 20515-3218", + "office": "464 Cannon House Office Building", + "rss_url": "http://seanmaloney.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "M001185", + "birthday": "1966-07-30", + "cspanid": 79760, + "firstname": "Sean", + "gender": "male", + "gender_label": "Male", + "lastname": "Maloney", + "link": "https://www.govtrack.us/congress/members/sean_maloney/412562", + "middlename": "Patrick", + "name": "Rep. Sean Maloney [D-NY18]", + "namemod": "", + "nickname": "", + "osid": "N00034277", + "pvsid": "139760", + "sortname": "Maloney, Sean (Rep.) [D-NY18]", + "twitterid": "RepSeanMaloney", + "youtubeid": null + }, + "phone": "202-225-5441", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NY", + "title": "Rep.", + "title_long": "Representative", + "website": "https://seanmaloney.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Ohio's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "2419 Rayburn House Office Building Washington DC 20515-3502", + "office": "2419 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "W000815", + "birthday": "1958-06-17", + "cspanid": 1034044, + "firstname": "Brad", + "gender": "male", + "gender_label": "Male", + "lastname": "Wenstrup", + "link": "https://www.govtrack.us/congress/members/brad_wenstrup/412564", + "middlename": "R.", + "name": "Rep. Brad Wenstrup [R-OH2]", + "namemod": "", + "nickname": "", + "osid": "N00033310", + "pvsid": "135326", + "sortname": "Wenstrup, Brad (Rep.) [R-OH2]", + "twitterid": "RepBradWenstrup", + "youtubeid": "repbradwenstrup" + }, + "phone": "202-225-3164", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "OH", + "title": "Rep.", + "title_long": "Representative", + "website": "https://wenstrup.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Ohio's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "2303 Rayburn House Office Building Washington DC 20515-3503", + "office": "2303 Rayburn House Office Building", + "rss_url": "http://beatty.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "B001281", + "birthday": "1950-03-12", + "cspanid": 67294, + "firstname": "Joyce", + "gender": "female", + "gender_label": "Female", + "lastname": "Beatty", + "link": "https://www.govtrack.us/congress/members/joyce_beatty/412565", + "middlename": "", + "name": "Rep. Joyce Beatty [D-OH3]", + "namemod": "", + "nickname": "", + "osid": "N00033904", + "pvsid": "2427", + "sortname": "Beatty, Joyce (Rep.) [D-OH3]", + "twitterid": "RepBeatty", + "youtubeid": null + }, + "phone": "202-225-4324", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "OH", + "title": "Rep.", + "title_long": "Representative", + "website": "https://beatty.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Ohio's 14th congressional district", + "district": 14, + "enddate": "2023-01-03", + "extra": { + "address": "2065 Rayburn House Office Building Washington DC 20515-3514", + "office": "2065 Rayburn House Office Building", + "rss_url": "http://joyce.house.gov/rss/press-releases.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "J000295", + "birthday": "1957-03-17", + "cspanid": 68561, + "firstname": "David", + "gender": "male", + "gender_label": "Male", + "lastname": "Joyce", + "link": "https://www.govtrack.us/congress/members/david_joyce/412566", + "middlename": "P.", + "name": "Rep. David Joyce [R-OH14]", + "namemod": "", + "nickname": "", + "osid": "N00035007", + "pvsid": "143052", + "sortname": "Joyce, David (Rep.) [R-OH14]", + "twitterid": "RepDaveJoyce", + "youtubeid": "repdavejoyce" + }, + "phone": "202-225-5731", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "OH", + "title": "Rep.", + "title_long": "Representative", + "website": "https://joyce.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Oklahoma's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "2421 Rayburn House Office Building Washington DC 20515-3602", + "office": "2421 Rayburn House Office Building", + "rss_url": "http://mullin.house.gov/news/rss.aspx" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "M001190", + "birthday": "1977-07-26", + "cspanid": 1034045, + "firstname": "Markwayne", + "gender": "male", + "gender_label": "Male", + "lastname": "Mullin", + "link": "https://www.govtrack.us/congress/members/markwayne_mullin/412568", + "middlename": "", + "name": "Rep. Markwayne Mullin [R-OK2]", + "namemod": "", + "nickname": "", + "osid": "N00033410", + "pvsid": "135898", + "sortname": "Mullin, Markwayne (Rep.) [R-OK2]", + "twitterid": "RepMullin", + "youtubeid": null + }, + "phone": "202-225-2701", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "OK", + "title": "Rep.", + "title_long": "Representative", + "website": "https://mullin.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Pennsylvania's 10th congressional district", + "district": 10, + "enddate": "2023-01-03", + "extra": { + "address": "2160 Rayburn House Office Building Washington DC 20515-3810", + "office": "2160 Rayburn House Office Building", + "rss_url": "http://perry.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "P000605", + "birthday": "1962-05-27", + "cspanid": 79873, + "firstname": "Scott", + "gender": "male", + "gender_label": "Male", + "lastname": "Perry", + "link": "https://www.govtrack.us/congress/members/scott_perry/412569", + "middlename": "", + "name": "Rep. Scott Perry [R-PA10]", + "namemod": "", + "nickname": "", + "osid": "N00034120", + "pvsid": "59980", + "sortname": "Perry, Scott (Rep.) [R-PA10]", + "twitterid": "RepScottPerry", + "youtubeid": "RepScottPerry" + }, + "phone": "202-225-5836", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "PA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://perry.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Pennsylvania's 8th congressional district", + "district": 8, + "enddate": "2023-01-03", + "extra": { + "address": "2102 Rayburn House Office Building Washington DC 20515-3808", + "office": "2102 Rayburn House Office Building", + "rss_url": "http://cartwright.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "C001090", + "birthday": "1961-05-01", + "cspanid": 79865, + "firstname": "Matthew", + "gender": "male", + "gender_label": "Male", + "lastname": "Cartwright", + "link": "https://www.govtrack.us/congress/members/matthew_cartwright/412571", + "middlename": "A.", + "name": "Rep. Matthew “Matt” Cartwright [D-PA8]", + "namemod": "", + "nickname": "Matt", + "osid": "N00034128", + "pvsid": "136236", + "sortname": "Cartwright, Matthew “Matt” (Rep.) [D-PA8]", + "twitterid": "RepCartwright", + "youtubeid": null + }, + "phone": "202-225-5546", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "PA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://cartwright.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for South Carolina's 7th congressional district", + "district": 7, + "enddate": "2023-01-03", + "extra": { + "address": "460 Cannon House Office Building Washington DC 20515-4007", + "office": "460 Cannon House Office Building", + "rss_url": "http://rice.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "R000597", + "birthday": "1957-08-04", + "cspanid": 79473, + "firstname": "Tom", + "gender": "male", + "gender_label": "Male", + "lastname": "Rice", + "link": "https://www.govtrack.us/congress/members/tom_rice/412572", + "middlename": "", + "name": "Rep. Tom Rice [R-SC7]", + "namemod": "", + "nickname": "", + "osid": "N00033832", + "pvsid": "132382", + "sortname": "Rice, Tom (Rep.) [R-SC7]", + "twitterid": "RepTomRice", + "youtubeid": "RepTomRice" + }, + "phone": "202-225-9895", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "SC", + "title": "Rep.", + "title_long": "Representative", + "website": "https://rice.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Texas's 14th congressional district", + "district": 14, + "enddate": "2023-01-03", + "extra": { + "address": "107 Cannon House Office Building Washington DC 20515-4314", + "office": "107 Cannon House Office Building", + "rss_url": "http://weber.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "W000814", + "birthday": "1953-07-02", + "cspanid": 79698, + "firstname": "Randy", + "gender": "male", + "gender_label": "Male", + "lastname": "Weber", + "link": "https://www.govtrack.us/congress/members/randy_weber/412574", + "middlename": "K.", + "name": "Rep. Randy Weber [R-TX14]", + "namemod": "Sr.", + "nickname": "", + "osid": "N00033539", + "pvsid": "102026", + "sortname": "Weber, Randy (Rep.) [R-TX14]", + "twitterid": "TXRandy14", + "youtubeid": "TXRandy14" + }, + "phone": "202-225-2831", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TX", + "title": "Rep.", + "title_long": "Representative", + "website": "https://weber.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Texas's 20th congressional district", + "district": 20, + "enddate": "2023-01-03", + "extra": { + "address": "2241 Rayburn House Office Building Washington DC 20515-4320", + "office": "2241 Rayburn House Office Building", + "rss_url": "http://castro.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "C001091", + "birthday": "1974-09-16", + "cspanid": 63974, + "firstname": "Joaquin", + "gender": "male", + "gender_label": "Male", + "lastname": "Castro", + "link": "https://www.govtrack.us/congress/members/joaquin_castro/412576", + "middlename": "", + "name": "Rep. Joaquin Castro [D-TX20]", + "namemod": "", + "nickname": "", + "osid": "N00033316", + "pvsid": "49227", + "sortname": "Castro, Joaquin (Rep.) [D-TX20]", + "twitterid": "JoaquinCastrotx", + "youtubeid": "JoaquinCastroTX" + }, + "phone": "202-225-3236", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TX", + "title": "Rep.", + "title_long": "Representative", + "website": "https://castro.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Texas's 25th congressional district", + "district": 25, + "enddate": "2023-01-03", + "extra": { + "address": "1708 Longworth House Office Building Washington DC 20515-4325", + "office": "1708 Longworth House Office Building", + "rss_url": "http://williams.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "W000816", + "birthday": "1949-09-13", + "cspanid": 623742, + "firstname": "Roger", + "gender": "male", + "gender_label": "Male", + "lastname": "Williams", + "link": "https://www.govtrack.us/congress/members/roger_williams/412578", + "middlename": "", + "name": "Rep. Roger Williams [R-TX25]", + "namemod": "", + "nickname": "", + "osid": "N00030602", + "pvsid": "50112", + "sortname": "Williams, Roger (Rep.) [R-TX25]", + "twitterid": "RepRWilliams", + "youtubeid": null + }, + "phone": "202-225-9896", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TX", + "title": "Rep.", + "title_long": "Representative", + "website": "https://williams.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Texas's 33rd congressional district", + "district": 33, + "enddate": "2023-01-03", + "extra": { + "address": "2348 Rayburn House Office Building Washington DC 20515-4333", + "office": "2348 Rayburn House Office Building", + "rss_url": "http://veasey.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "V000131", + "birthday": "1971-01-03", + "cspanid": 79466, + "firstname": "Marc", + "gender": "male", + "gender_label": "Male", + "lastname": "Veasey", + "link": "https://www.govtrack.us/congress/members/marc_veasey/412579", + "middlename": "A.", + "name": "Rep. Marc Veasey [D-TX33]", + "namemod": "", + "nickname": "", + "osid": "N00033839", + "pvsid": "49671", + "sortname": "Veasey, Marc (Rep.) [D-TX33]", + "twitterid": "RepVeasey", + "youtubeid": "marcveasey" + }, + "phone": "202-225-9897", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TX", + "title": "Rep.", + "title_long": "Representative", + "website": "https://veasey.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Texas's 34th congressional district", + "district": 34, + "enddate": "2023-01-03", + "extra": { + "address": "307 Cannon House Office Building Washington DC 20515-4334", + "office": "307 Cannon House Office Building", + "rss_url": "http://vela.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "V000132", + "birthday": "1963-02-13", + "cspanid": 95434, + "firstname": "Filemon", + "gender": "male", + "gender_label": "Male", + "lastname": "Vela", + "link": "https://www.govtrack.us/congress/members/filemon_vela/412580", + "middlename": "", + "name": "Rep. Filemon Vela [D-TX34]", + "namemod": "", + "nickname": "", + "osid": "N00034349", + "pvsid": "137719", + "sortname": "Vela, Filemon (Rep.) [D-TX34]", + "twitterid": "RepFilemonVela", + "youtubeid": "RepFilemonVela" + }, + "phone": "202-225-9901", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TX", + "title": "Rep.", + "title_long": "Representative", + "website": "https://vela.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Utah's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "166 Cannon House Office Building Washington DC 20515-4402", + "office": "166 Cannon House Office Building", + "rss_url": "http://stewart.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "S001192", + "birthday": "1960-07-15", + "cspanid": 68466, + "firstname": "Chris", + "gender": "male", + "gender_label": "Male", + "lastname": "Stewart", + "link": "https://www.govtrack.us/congress/members/chris_stewart/412581", + "middlename": "", + "name": "Rep. Chris Stewart [R-UT2]", + "namemod": "", + "nickname": "", + "osid": "N00033932", + "pvsid": "135930", + "sortname": "Stewart, Chris (Rep.) [R-UT2]", + "twitterid": "RepChrisStewart", + "youtubeid": "repchrisstewart" + }, + "phone": "202-225-9730", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "UT", + "title": "Rep.", + "title_long": "Representative", + "website": "https://stewart.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Washington's 6th congressional district", + "district": 6, + "enddate": "2023-01-03", + "extra": { + "address": "2059 Rayburn House Office Building Washington DC 20515-4706", + "office": "2059 Rayburn House Office Building", + "rss_url": "http://kilmer.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "K000381", + "birthday": "1974-01-01", + "cspanid": 68310, + "firstname": "Derek", + "gender": "male", + "gender_label": "Male", + "lastname": "Kilmer", + "link": "https://www.govtrack.us/congress/members/derek_kilmer/412583", + "middlename": "", + "name": "Rep. Derek Kilmer [D-WA6]", + "namemod": "", + "nickname": "", + "osid": "N00034453", + "pvsid": "51516", + "sortname": "Kilmer, Derek (Rep.) [D-WA6]", + "twitterid": "RepDerekKilmer", + "youtubeid": null + }, + "phone": "202-225-5916", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "WA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://kilmer.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Wisconsin's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "1727 Longworth House Office Building Washington DC 20515-4902", + "office": "1727 Longworth House Office Building", + "rss_url": "http://pocan.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "P000607", + "birthday": "1964-08-14", + "cspanid": 79688, + "firstname": "Mark", + "gender": "male", + "gender_label": "Male", + "lastname": "Pocan", + "link": "https://www.govtrack.us/congress/members/mark_pocan/412585", + "middlename": "", + "name": "Rep. Mark Pocan [D-WI2]", + "namemod": "", + "nickname": "", + "osid": "N00033549", + "pvsid": "26238", + "sortname": "Pocan, Mark (Rep.) [D-WI2]", + "twitterid": "RepMarkPocan", + "youtubeid": "repmarkpocan" + }, + "phone": "202-225-2906", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "WI", + "title": "Rep.", + "title_long": "Representative", + "website": "https://pocan.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Illinois's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "2416 Rayburn House Office Building Washington DC 20515-1302", + "office": "2416 Rayburn House Office Building", + "rss_url": "http://robinkelly.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "K000385", + "birthday": "1956-04-30", + "cspanid": 70399, + "firstname": "Robin", + "gender": "female", + "gender_label": "Female", + "lastname": "Kelly", + "link": "https://www.govtrack.us/congress/members/robin_kelly/412595", + "middlename": "L.", + "name": "Rep. Robin Kelly [D-IL2]", + "namemod": "", + "nickname": "", + "osid": "N00035215", + "pvsid": "33384", + "sortname": "Kelly, Robin (Rep.) [D-IL2]", + "twitterid": "RepRobinKelly", + "youtubeid": null + }, + "phone": "202-225-0773", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "IL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://robinkelly.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Missouri's 8th congressional district", + "district": 8, + "enddate": "2023-01-03", + "extra": { + "address": "2418 Rayburn House Office Building Washington DC 20515-2508", + "office": "2418 Rayburn House Office Building", + "rss_url": "http://jasonsmith.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "S001195", + "birthday": "1980-06-16", + "cspanid": 71083, + "firstname": "Jason", + "gender": "male", + "gender_label": "Male", + "lastname": "Smith", + "link": "https://www.govtrack.us/congress/members/jason_smith/412596", + "middlename": "T.", + "name": "Rep. Jason Smith [R-MO8]", + "namemod": "", + "nickname": "", + "osid": "N00035282", + "pvsid": "59318", + "sortname": "Smith, Jason (Rep.) [R-MO8]", + "twitterid": "RepJasonSmith", + "youtubeid": "RepJasonSmith" + }, + "phone": "202-225-4404", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MO", + "title": "Rep.", + "title_long": "Representative", + "website": "https://jasonsmith.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Massachusetts's 5th congressional district", + "district": 5, + "enddate": "2023-01-03", + "extra": { + "address": "2448 Rayburn House Office Building Washington DC 20515-2105", + "office": "2448 Rayburn House Office Building" + }, + "leadership_title": "Assistant Speaker of the House", + "party": "Democrat", + "person": { + "bioguideid": "C001101", + "birthday": "1963-07-17", + "cspanid": 73178, + "firstname": "Katherine", + "gender": "female", + "gender_label": "Female", + "lastname": "Clark", + "link": "https://www.govtrack.us/congress/members/katherine_clark/412600", + "middlename": "M.", + "name": "Rep. Katherine Clark [D-MA5]", + "namemod": "", + "nickname": "", + "osid": "N00035278", + "pvsid": "35858", + "sortname": "Clark, Katherine (Rep.) [D-MA5]", + "twitterid": "RepKClark", + "youtubeid": null + }, + "phone": "202-225-2836", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://katherineclark.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New Jersey's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "2427 Rayburn House Office Building Washington DC 20515-3001", + "office": "2427 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "N000188", + "birthday": "1958-12-13", + "cspanid": 76311, + "firstname": "Donald", + "gender": "male", + "gender_label": "Male", + "lastname": "Norcross", + "link": "https://www.govtrack.us/congress/members/donald_norcross/412606", + "middlename": "W.", + "name": "Rep. Donald Norcross [D-NJ1]", + "namemod": "", + "nickname": "", + "osid": "N00036154", + "pvsid": "116277", + "sortname": "Norcross, Donald (Rep.) [D-NJ1]", + "twitterid": "DonaldNorcross", + "youtubeid": null + }, + "phone": "202-225-6501", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NJ", + "title": "Rep.", + "title_long": "Representative", + "website": "https://norcross.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for North Carolina's 12th congressional district", + "district": 12, + "enddate": "2023-01-03", + "extra": { + "address": "2436 Rayburn House Office Building Washington DC 20515-3312", + "office": "2436 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "A000370", + "birthday": "1946-05-27", + "cspanid": 76386, + "firstname": "Alma", + "gender": "female", + "gender_label": "Female", + "lastname": "Adams", + "link": "https://www.govtrack.us/congress/members/alma_adams/412607", + "middlename": "S.", + "name": "Rep. Alma Adams [D-NC12]", + "namemod": "", + "nickname": "", + "osid": "N00035451", + "pvsid": "5935", + "sortname": "Adams, Alma (Rep.) [D-NC12]", + "twitterid": "RepAdams", + "youtubeid": null + }, + "phone": "202-225-1510", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NC", + "title": "Rep.", + "title_long": "Representative", + "website": "https://adams.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Alabama's 6th congressional district", + "district": 6, + "enddate": "2023-01-03", + "extra": { + "address": "170 Cannon House Office Building Washington DC 20515-0106", + "office": "170 Cannon House Office Building" + }, + "leadership_title": "House Republican Policy Committee Chair", + "party": "Republican", + "person": { + "bioguideid": "P000609", + "birthday": "1954-05-14", + "cspanid": 76094, + "firstname": "Gary", + "gender": "male", + "gender_label": "Male", + "lastname": "Palmer", + "link": "https://www.govtrack.us/congress/members/gary_palmer/412608", + "middlename": "J.", + "name": "Rep. Gary Palmer [R-AL6]", + "namemod": "", + "nickname": "", + "osid": "N00035691", + "pvsid": "146274", + "sortname": "Palmer, Gary (Rep.) [R-AL6]", + "twitterid": "USRepGaryPalmer", + "youtubeid": null + }, + "phone": "202-225-4921", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "AL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://palmer.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Arkansas's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "1533 Longworth House Office Building Washington DC 20515-0402", + "office": "1533 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "H001072", + "birthday": "1956-12-05", + "cspanid": 9265172, + "firstname": "J.", + "gender": "male", + "gender_label": "Male", + "lastname": "Hill", + "link": "https://www.govtrack.us/congress/members/french_hill/412609", + "middlename": "French", + "name": "Rep. French Hill [R-AR2]", + "namemod": "", + "nickname": "", + "osid": "N00035792", + "pvsid": "146290", + "sortname": "Hill, French (Rep.) [R-AR2]", + "twitterid": "RepFrenchHill", + "youtubeid": null + }, + "phone": "202-225-2506", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "AR", + "title": "Rep.", + "title_long": "Representative", + "website": "https://hill.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Arkansas's 4th congressional district", + "district": 4, + "enddate": "2023-01-03", + "extra": { + "address": "202 Cannon House Office Building Washington DC 20515-0404", + "office": "202 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "W000821", + "birthday": "1967-11-18", + "cspanid": 76097, + "firstname": "Bruce", + "gender": "male", + "gender_label": "Male", + "lastname": "Westerman", + "link": "https://www.govtrack.us/congress/members/bruce_westerman/412610", + "middlename": "", + "name": "Rep. Bruce Westerman [R-AR4]", + "namemod": "", + "nickname": "", + "osid": "N00035527", + "pvsid": "119120", + "sortname": "Westerman, Bruce (Rep.) [R-AR4]", + "twitterid": "RepWesterman", + "youtubeid": null + }, + "phone": "202-225-3772", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "AR", + "title": "Rep.", + "title_long": "Representative", + "website": "https://westerman.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Arizona's 7th congressional district", + "district": 7, + "enddate": "2023-01-03", + "extra": { + "address": "1131 Longworth House Office Building Washington DC 20515-0307", + "office": "1131 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "G000574", + "birthday": "1979-11-20", + "cspanid": 77233, + "firstname": "Ruben", + "gender": "male", + "gender_label": "Male", + "lastname": "Gallego", + "link": "https://www.govtrack.us/congress/members/ruben_gallego/412612", + "middlename": "", + "name": "Rep. Ruben Gallego [D-AZ7]", + "namemod": "", + "nickname": "", + "osid": "N00036097", + "pvsid": "123732", + "sortname": "Gallego, Ruben (Rep.) [D-AZ7]", + "twitterid": "RepRubenGallego", + "youtubeid": null + }, + "phone": "202-225-4065", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "AZ", + "title": "Rep.", + "title_long": "Representative", + "website": "https://rubengallego.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 11th congressional district", + "district": 11, + "enddate": "2023-01-03", + "extra": { + "address": "503 Cannon House Office Building Washington DC 20515-0511", + "office": "503 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "D000623", + "birthday": "1952-03-31", + "cspanid": 61736, + "firstname": "Mark", + "gender": "male", + "gender_label": "Male", + "lastname": "DeSaulnier", + "link": "https://www.govtrack.us/congress/members/mark_desaulnier/412613", + "middlename": "", + "name": "Rep. Mark DeSaulnier [D-CA11]", + "namemod": "", + "nickname": "", + "osid": "N00030709", + "pvsid": "69477", + "sortname": "DeSaulnier, Mark (Rep.) [D-CA11]", + "twitterid": "RepDeSaulnier", + "youtubeid": null + }, + "phone": "202-225-2095", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://desaulnier.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 31st congressional district", + "district": 31, + "enddate": "2023-01-03", + "extra": { + "address": "109 Cannon House Office Building Washington DC 20515-0531", + "office": "109 Cannon House Office Building" + }, + "leadership_title": "House Democratic Caucus Vice Chair", + "party": "Democrat", + "person": { + "bioguideid": "A000371", + "birthday": "1979-06-19", + "cspanid": 79994, + "firstname": "Pete", + "gender": "male", + "gender_label": "Male", + "lastname": "Aguilar", + "link": "https://www.govtrack.us/congress/members/pete_aguilar/412615", + "middlename": "", + "name": "Rep. Pete Aguilar [D-CA31]", + "namemod": "", + "nickname": "", + "osid": "N00033997", + "pvsid": "70114", + "sortname": "Aguilar, Pete (Rep.) [D-CA31]", + "twitterid": "reppeteaguilar", + "youtubeid": null + }, + "phone": "202-225-3201", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://aguilar.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 33rd congressional district", + "district": 33, + "enddate": "2023-01-03", + "extra": { + "address": "403 Cannon House Office Building Washington DC 20515-0533", + "office": "403 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "L000582", + "birthday": "1969-03-29", + "cspanid": 28076, + "firstname": "Ted", + "gender": "male", + "gender_label": "Male", + "lastname": "Lieu", + "link": "https://www.govtrack.us/congress/members/ted_lieu/412616", + "middlename": "", + "name": "Rep. Ted Lieu [D-CA33]", + "namemod": "", + "nickname": "", + "osid": "N00035825", + "pvsid": "1516", + "sortname": "Lieu, Ted (Rep.) [D-CA33]", + "twitterid": "RepTedLieu", + "youtubeid": null + }, + "phone": "202-225-3976", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://lieu.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 35th congressional district", + "district": 35, + "enddate": "2023-01-03", + "extra": { + "address": "2227 Rayburn House Office Building Washington DC 20515-0535", + "office": "2227 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "T000474", + "birthday": "1965-04-04", + "cspanid": 76129, + "firstname": "Norma", + "gender": "female", + "gender_label": "Female", + "lastname": "Torres", + "link": "https://www.govtrack.us/congress/members/norma_torres/412617", + "middlename": "J.", + "name": "Rep. Norma Torres [D-CA35]", + "namemod": "", + "nickname": "", + "osid": "N00036107", + "pvsid": "71284", + "sortname": "Torres, Norma (Rep.) [D-CA35]", + "twitterid": "NormaJTorres", + "youtubeid": null + }, + "phone": "202-225-6161", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://torres.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Colorado's 4th congressional district", + "district": 4, + "enddate": "2023-01-03", + "extra": { + "address": "2455 Rayburn House Office Building Washington DC 20515-0604", + "office": "2455 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "B001297", + "birthday": "1959-02-16", + "cspanid": 78285, + "firstname": "Ken", + "gender": "male", + "gender_label": "Male", + "lastname": "Buck", + "link": "https://www.govtrack.us/congress/members/ken_buck/412619", + "middlename": "", + "name": "Rep. Ken Buck [R-CO4]", + "namemod": "", + "nickname": "", + "osid": "N00030829", + "pvsid": "125319", + "sortname": "Buck, Ken (Rep.) [R-CO4]", + "twitterid": "RepKenBuck", + "youtubeid": null + }, + "phone": "202-225-4676", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CO", + "title": "Rep.", + "title_long": "Representative", + "website": "https://buck.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Georgia's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "2432 Rayburn House Office Building Washington DC 20515-1001", + "office": "2432 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "C001103", + "birthday": "1957-09-06", + "cspanid": 76158, + "firstname": "Earl", + "gender": "male", + "gender_label": "Male", + "lastname": "Carter", + "link": "https://www.govtrack.us/congress/members/earl_carter/412622", + "middlename": "L.", + "name": "Rep. Earl “Buddy” Carter [R-GA1]", + "namemod": "", + "nickname": "Buddy", + "osid": "N00035346", + "pvsid": "32085", + "sortname": "Carter, Earl “Buddy” (Rep.) [R-GA1]", + "twitterid": "RepBuddyCarter", + "youtubeid": null + }, + "phone": "202-225-5831", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "GA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://buddycarter.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Georgia's 10th congressional district", + "district": 10, + "enddate": "2023-01-03", + "extra": { + "address": "404 Cannon House Office Building Washington DC 20515-1010", + "office": "404 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "H001071", + "birthday": "1960-04-22", + "cspanid": 94974, + "firstname": "Jody", + "gender": "male", + "gender_label": "Male", + "lastname": "Hice", + "link": "https://www.govtrack.us/congress/members/jody_hice/412623", + "middlename": "B.", + "name": "Rep. Jody Hice [R-GA10]", + "namemod": "", + "nickname": "", + "osid": "N00032243", + "pvsid": "122246", + "sortname": "Hice, Jody (Rep.) [R-GA10]", + "twitterid": "congressmanhice", + "youtubeid": null + }, + "phone": "202-225-4101", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "GA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://hice.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Georgia's 11th congressional district", + "district": 11, + "enddate": "2023-01-03", + "extra": { + "address": "2133 Rayburn House Office Building Washington DC 20515-1011", + "office": "2133 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "L000583", + "birthday": "1963-12-22", + "cspanid": 76165, + "firstname": "Barry", + "gender": "male", + "gender_label": "Male", + "lastname": "Loudermilk", + "link": "https://www.govtrack.us/congress/members/barry_loudermilk/412624", + "middlename": "", + "name": "Rep. Barry Loudermilk [R-GA11]", + "namemod": "", + "nickname": "", + "osid": "N00035347", + "pvsid": "31618", + "sortname": "Loudermilk, Barry (Rep.) [R-GA11]", + "twitterid": "RepLoudermilk", + "youtubeid": null + }, + "phone": "202-225-2931", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "GA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://loudermilk.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Georgia's 12th congressional district", + "district": 12, + "enddate": "2023-01-03", + "extra": { + "address": "570 Cannon House Office Building Washington DC 20515-1012", + "office": "570 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "A000372", + "birthday": "1951-11-07", + "cspanid": 62545, + "firstname": "Rick", + "gender": "male", + "gender_label": "Male", + "lastname": "Allen", + "link": "https://www.govtrack.us/congress/members/rick_allen/412625", + "middlename": "W.", + "name": "Rep. Rick Allen [R-GA12]", + "namemod": "", + "nickname": "", + "osid": "N00033720", + "pvsid": "136062", + "sortname": "Allen, Rick (Rep.) [R-GA12]", + "twitterid": "reprickallen", + "youtubeid": null + }, + "phone": "202-225-2823", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "GA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://allen.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Illinois's 12th congressional district", + "district": 12, + "enddate": "2023-01-03", + "extra": { + "address": "1211 Longworth House Office Building Washington DC 20515-1312", + "office": "1211 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "B001295", + "birthday": "1960-12-30", + "cspanid": 76176, + "firstname": "Mike", + "gender": "male", + "gender_label": "Male", + "lastname": "Bost", + "link": "https://www.govtrack.us/congress/members/mike_bost/412629", + "middlename": "", + "name": "Rep. Mike Bost [R-IL12]", + "namemod": "", + "nickname": "", + "osid": "N00035420", + "pvsid": "6302", + "sortname": "Bost, Mike (Rep.) [R-IL12]", + "twitterid": "RepBost", + "youtubeid": null + }, + "phone": "202-225-5661", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "IL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://bost.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Louisiana's 6th congressional district", + "district": 6, + "enddate": "2023-01-03", + "extra": { + "address": "2402 Rayburn House Office Building Washington DC 20515-1806", + "office": "2402 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "G000577", + "birthday": "1972-01-31", + "cspanid": 9274609, + "firstname": "Garret", + "gender": "male", + "gender_label": "Male", + "lastname": "Graves", + "link": "https://www.govtrack.us/congress/members/garret_graves/412631", + "middlename": "", + "name": "Rep. Garret Graves [R-LA6]", + "namemod": "", + "nickname": "", + "osid": "N00036135", + "pvsid": "155424", + "sortname": "Graves, Garret (Rep.) [R-LA6]", + "twitterid": "RepGarretGraves", + "youtubeid": null + }, + "phone": "202-225-3901", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "LA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://garretgraves.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Massachusetts's 6th congressional district", + "district": 6, + "enddate": "2023-01-03", + "extra": { + "address": "1127 Longworth House Office Building Washington DC 20515-2106", + "office": "1127 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "M001196", + "birthday": "1978-10-24", + "cspanid": 78453, + "firstname": "Seth", + "gender": "male", + "gender_label": "Male", + "lastname": "Moulton", + "link": "https://www.govtrack.us/congress/members/seth_moulton/412632", + "middlename": "", + "name": "Rep. Seth Moulton [D-MA6]", + "namemod": "", + "nickname": "", + "osid": "N00035431", + "pvsid": "146299", + "sortname": "Moulton, Seth (Rep.) [D-MA6]", + "twitterid": "teammoulton", + "youtubeid": null + }, + "phone": "202-225-8020", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://moulton.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Michigan's 4th congressional district", + "district": 4, + "enddate": "2023-01-03", + "extra": { + "address": "117 Cannon House Office Building Washington DC 20515-2204", + "office": "117 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "M001194", + "birthday": "1961-05-08", + "cspanid": 76660, + "firstname": "John", + "gender": "male", + "gender_label": "Male", + "lastname": "Moolenaar", + "link": "https://www.govtrack.us/congress/members/john_moolenaar/412634", + "middlename": "R.", + "name": "Rep. John Moolenaar [R-MI4]", + "namemod": "", + "nickname": "", + "osid": "N00036275", + "pvsid": "37676", + "sortname": "Moolenaar, John (Rep.) [R-MI4]", + "twitterid": "RepMoolenaar", + "youtubeid": null + }, + "phone": "202-225-3561", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MI", + "title": "Rep.", + "title_long": "Representative", + "website": "https://moolenaar.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Michigan's 12th congressional district", + "district": 12, + "enddate": "2023-01-03", + "extra": { + "address": "116 Cannon House Office Building Washington DC 20515-2212", + "office": "116 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "D000624", + "birthday": "1953-11-23", + "cspanid": 20818, + "firstname": "Debbie", + "gender": "female", + "gender_label": "Female", + "lastname": "Dingell", + "link": "https://www.govtrack.us/congress/members/debbie_dingell/412637", + "middlename": "", + "name": "Rep. Debbie Dingell [D-MI12]", + "namemod": "", + "nickname": "", + "osid": "N00036149", + "pvsid": "152482", + "sortname": "Dingell, Debbie (Rep.) [D-MI12]", + "twitterid": "RepDebDingell", + "youtubeid": null + }, + "phone": "202-225-4071", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MI", + "title": "Rep.", + "title_long": "Representative", + "website": "https://debbiedingell.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Michigan's 14th congressional district", + "district": 14, + "enddate": "2023-01-03", + "extra": { + "address": "2463 Rayburn House Office Building Washington DC 20515-2214", + "office": "2463 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "L000581", + "birthday": "1954-10-18", + "cspanid": 79924, + "firstname": "Brenda", + "gender": "female", + "gender_label": "Female", + "lastname": "Lawrence", + "link": "https://www.govtrack.us/congress/members/brenda_lawrence/412638", + "middlename": "L.", + "name": "Rep. Brenda Lawrence [D-MI14]", + "namemod": "", + "nickname": "", + "osid": "N00034068", + "pvsid": "78851", + "sortname": "Lawrence, Brenda (Rep.) [D-MI14]", + "twitterid": "RepLawrence", + "youtubeid": null + }, + "phone": "202-225-5802", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MI", + "title": "Rep.", + "title_long": "Representative", + "website": "https://lawrence.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Minnesota's 6th congressional district", + "district": 6, + "enddate": "2023-01-03", + "extra": { + "address": "315 Cannon House Office Building Washington DC 20515-2306", + "office": "315 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "E000294", + "birthday": "1961-03-03", + "cspanid": 75567, + "firstname": "Tom", + "gender": "male", + "gender_label": "Male", + "lastname": "Emmer", + "link": "https://www.govtrack.us/congress/members/tom_emmer/412639", + "middlename": "", + "name": "Rep. Tom Emmer [R-MN6]", + "namemod": "", + "nickname": "", + "osid": "N00035440", + "pvsid": "38894", + "sortname": "Emmer, Tom (Rep.) [R-MN6]", + "twitterid": "RepTomEmmer", + "youtubeid": "RepTomEmmer" + }, + "phone": "202-225-2331", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MN", + "title": "Rep.", + "title_long": "Representative", + "website": "https://emmer.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for North Carolina's 7th congressional district", + "district": 7, + "enddate": "2023-01-03", + "extra": { + "address": "2333 Rayburn House Office Building Washington DC 20515-3307", + "office": "2333 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "R000603", + "birthday": "1972-02-16", + "cspanid": 79710, + "firstname": "David", + "gender": "male", + "gender_label": "Male", + "lastname": "Rouzer", + "link": "https://www.govtrack.us/congress/members/david_rouzer/412641", + "middlename": "", + "name": "Rep. David Rouzer [R-NC7]", + "namemod": "", + "nickname": "", + "osid": "N00033527", + "pvsid": "102964", + "sortname": "Rouzer, David (Rep.) [R-NC7]", + "twitterid": "RepDavidRouzer", + "youtubeid": null + }, + "phone": "202-225-2731", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NC", + "title": "Rep.", + "title_long": "Representative", + "website": "https://rouzer.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New Jersey's 12th congressional district", + "district": 12, + "enddate": "2023-01-03", + "extra": { + "address": "168 Cannon House Office Building Washington DC 20515-3012", + "office": "168 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "W000822", + "birthday": "1945-02-06", + "cspanid": 79091, + "firstname": "Bonnie", + "gender": "female", + "gender_label": "Female", + "lastname": "Watson Coleman", + "link": "https://www.govtrack.us/congress/members/bonnie_watson_coleman/412644", + "middlename": "", + "name": "Rep. Bonnie Watson Coleman [D-NJ12]", + "namemod": "", + "nickname": "", + "osid": "N00036158", + "pvsid": "24799", + "sortname": "Watson Coleman, Bonnie (Rep.) [D-NJ12]", + "twitterid": "RepBonnie", + "youtubeid": null + }, + "phone": "202-225-5801", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NJ", + "title": "Rep.", + "title_long": "Representative", + "website": "https://watsoncoleman.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New York's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "2441 Rayburn House Office Building Washington DC 20515-3201", + "office": "2441 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "Z000017", + "birthday": "1980-01-30", + "cspanid": 61616, + "firstname": "Lee", + "gender": "male", + "gender_label": "Male", + "lastname": "Zeldin", + "link": "https://www.govtrack.us/congress/members/lee_zeldin/412646", + "middlename": "M.", + "name": "Rep. Lee Zeldin [R-NY1]", + "namemod": "", + "nickname": "", + "osid": "N00029404", + "pvsid": "110252", + "sortname": "Zeldin, Lee (Rep.) [R-NY1]", + "twitterid": "RepLeeZeldin", + "youtubeid": null + }, + "phone": "202-225-3826", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NY", + "title": "Rep.", + "title_long": "Representative", + "website": "https://zeldin.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New York's 4th congressional district", + "district": 4, + "enddate": "2023-01-03", + "extra": { + "address": "2435 Rayburn House Office Building Washington DC 20515-3204", + "office": "2435 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "R000602", + "birthday": "1965-02-15", + "cspanid": 76332, + "firstname": "Kathleen", + "gender": "female", + "gender_label": "Female", + "lastname": "Rice", + "link": "https://www.govtrack.us/congress/members/kathleen_rice/412647", + "middlename": "M.", + "name": "Rep. Kathleen Rice [D-NY4]", + "namemod": "", + "nickname": "", + "osid": "N00035927", + "pvsid": "127653", + "sortname": "Rice, Kathleen (Rep.) [D-NY4]", + "twitterid": "RepKathleenRice", + "youtubeid": null + }, + "phone": "202-225-5516", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NY", + "title": "Rep.", + "title_long": "Representative", + "website": "https://kathleenrice.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New York's 21st congressional district", + "district": 21, + "enddate": "2023-01-03", + "extra": { + "address": "2211 Rayburn House Office Building Washington DC 20515-3221", + "office": "2211 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "S001196", + "birthday": "1984-07-02", + "cspanid": 76364, + "firstname": "Elise", + "gender": "female", + "gender_label": "Female", + "lastname": "Stefanik", + "link": "https://www.govtrack.us/congress/members/elise_stefanik/412648", + "middlename": "M.", + "name": "Rep. Elise Stefanik [R-NY21]", + "namemod": "", + "nickname": "", + "osid": "N00035523", + "pvsid": "152539", + "sortname": "Stefanik, Elise (Rep.) [R-NY21]", + "twitterid": "RepStefanik", + "youtubeid": null + }, + "phone": "202-225-4611", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NY", + "title": "Rep.", + "title_long": "Representative", + "website": "https://stefanik.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New York's 24th congressional district", + "district": 24, + "enddate": "2023-01-03", + "extra": { + "address": "2428 Rayburn House Office Building Washington DC 20515-3224", + "office": "2428 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "K000386", + "birthday": "1962-11-09", + "cspanid": 76367, + "firstname": "John", + "gender": "male", + "gender_label": "Male", + "lastname": "Katko", + "link": "https://www.govtrack.us/congress/members/john_katko/412649", + "middlename": "", + "name": "Rep. John Katko [R-NY24]", + "namemod": "", + "nickname": "", + "osid": "N00035934", + "pvsid": "152546", + "sortname": "Katko, John (Rep.) [R-NY24]", + "twitterid": "RepJohnKatko", + "youtubeid": null + }, + "phone": "202-225-3701", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NY", + "title": "Rep.", + "title_long": "Representative", + "website": "https://katko.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Pennsylvania's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "1133 Longworth House Office Building Washington DC 20515-3802", + "office": "1133 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "B001296", + "birthday": "1977-02-06", + "cspanid": 76428, + "firstname": "Brendan", + "gender": "male", + "gender_label": "Male", + "lastname": "Boyle", + "link": "https://www.govtrack.us/congress/members/brendan_boyle/412652", + "middlename": "F.", + "name": "Rep. Brendan Boyle [D-PA2]", + "namemod": "", + "nickname": "", + "osid": "N00035307", + "pvsid": "47357", + "sortname": "Boyle, Brendan (Rep.) [D-PA2]", + "twitterid": "CongBoyle", + "youtubeid": null + }, + "phone": "202-225-6111", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "PA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://boyle.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Texas's 36th congressional district", + "district": 36, + "enddate": "2023-01-03", + "extra": { + "address": "2236 Rayburn House Office Building Washington DC 20515-4336", + "office": "2236 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "B001291", + "birthday": "1948-03-23", + "cspanid": 44883, + "firstname": "Brian", + "gender": "male", + "gender_label": "Male", + "lastname": "Babin", + "link": "https://www.govtrack.us/congress/members/brian_babin/412655", + "middlename": "", + "name": "Rep. Brian Babin [R-TX36]", + "namemod": "", + "nickname": "", + "osid": "N00005736", + "pvsid": "360", + "sortname": "Babin, Brian (Rep.) [R-TX36]", + "twitterid": "RepBrianBabin", + "youtubeid": null + }, + "phone": "202-225-1555", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TX", + "title": "Rep.", + "title_long": "Representative", + "website": "https://babin.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Virginia's 8th congressional district", + "district": 8, + "enddate": "2023-01-03", + "extra": { + "address": "1119 Longworth House Office Building Washington DC 20515-4608", + "office": "1119 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "B001292", + "birthday": "1950-06-20", + "cspanid": 21141, + "firstname": "Donald", + "gender": "male", + "gender_label": "Male", + "lastname": "Beyer", + "link": "https://www.govtrack.us/congress/members/donald_beyer/412657", + "middlename": "S.", + "name": "Rep. Donald Beyer [D-VA8]", + "namemod": "Jr.", + "nickname": "", + "osid": "N00036018", + "pvsid": "1707", + "sortname": "Beyer, Donald (Rep.) [D-VA8]", + "twitterid": "RepDonBeyer", + "youtubeid": null + }, + "phone": "202-225-4376", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "VA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://beyer.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for the Virgin Islands", + "district": 0, + "enddate": "2023-01-03", + "extra": { + "address": "2404 Rayburn House Office Building Washington DC 20515-5500", + "office": "2404 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "P000610", + "birthday": "1966-05-13", + "cspanid": 79090, + "firstname": "Stacey", + "gender": "female", + "gender_label": "Female", + "lastname": "Plaskett", + "link": "https://www.govtrack.us/congress/members/stacey_plaskett/412659", + "middlename": "E.", + "name": "Rep. Stacey Plaskett [D-VI0]", + "namemod": "", + "nickname": "", + "osid": "N00035000", + "pvsid": "155929", + "sortname": "Plaskett, Stacey (Rep.) [D-VI0]", + "twitterid": "staceyplaskett", + "youtubeid": null + }, + "phone": "202-225-1790", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "VI", + "title": "Rep.", + "title_long": "Representative", + "website": "https://plaskett.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Washington's 4th congressional district", + "district": 4, + "enddate": "2023-01-03", + "extra": { + "address": "504 Cannon House Office Building Washington DC 20515-4704", + "office": "504 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "N000189", + "birthday": "1955-07-10", + "cspanid": 78315, + "firstname": "Dan", + "gender": "male", + "gender_label": "Male", + "lastname": "Newhouse", + "link": "https://www.govtrack.us/congress/members/dan_newhouse/412660", + "middlename": "", + "name": "Rep. Dan Newhouse [R-WA4]", + "namemod": "", + "nickname": "", + "osid": "N00036403", + "pvsid": "51522", + "sortname": "Newhouse, Dan (Rep.) [R-WA4]", + "twitterid": "RepNewhouse", + "youtubeid": null + }, + "phone": "202-225-5816", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "WA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://newhouse.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Wisconsin's 6th congressional district", + "district": 6, + "enddate": "2023-01-03", + "extra": { + "address": "1427 Longworth House Office Building Washington DC 20515-4906", + "office": "1427 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "G000576", + "birthday": "1955-07-03", + "cspanid": 77282, + "firstname": "Glenn", + "gender": "male", + "gender_label": "Male", + "lastname": "Grothman", + "link": "https://www.govtrack.us/congress/members/glenn_grothman/412661", + "middlename": "", + "name": "Rep. Glenn Grothman [R-WI6]", + "namemod": "", + "nickname": "", + "osid": "N00036409", + "pvsid": "3493", + "sortname": "Grothman, Glenn (Rep.) [R-WI6]", + "twitterid": "RepGrothman", + "youtubeid": null + }, + "phone": "202-225-2476", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "WI", + "title": "Rep.", + "title_long": "Representative", + "website": "https://grothman.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for West Virginia's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "2228 Rayburn House Office Building Washington DC 20515-4802", + "office": "2228 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "M001195", + "birthday": "1971-06-05", + "cspanid": 76588, + "firstname": "Alexander", + "gender": "male", + "gender_label": "Male", + "lastname": "Mooney", + "link": "https://www.govtrack.us/congress/members/alexander_mooney/412662", + "middlename": "X.", + "name": "Rep. Alexander Mooney [R-WV2]", + "namemod": "", + "nickname": "", + "osid": "N00033814", + "pvsid": "145943", + "sortname": "Mooney, Alexander (Rep.) [R-WV2]", + "twitterid": "RepAlexMooney", + "youtubeid": null + }, + "phone": "202-225-2711", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "WV", + "title": "Rep.", + "title_long": "Representative", + "website": "https://mooney.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for American Samoa", + "district": 0, + "enddate": "2023-01-03", + "extra": { + "address": "1339 Longworth House Office Building Washington DC 20515-5200", + "office": "1339 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "R000600", + "birthday": "1947-12-29", + "cspanid": 5188, + "firstname": "Aumua Amata", + "gender": "female", + "gender_label": "Female", + "lastname": "Radewagen", + "link": "https://www.govtrack.us/congress/members/aumua_amata_radewagen/412664", + "middlename": "Coleman", + "name": "Rep. Aumua Amata Radewagen [R-AS0]", + "namemod": "", + "nickname": "", + "osid": "N00007635", + "pvsid": "128380", + "sortname": "Radewagen, Aumua Amata (Rep.) [R-AS0]", + "twitterid": "RepAmata", + "youtubeid": null + }, + "phone": "202-225-8577", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "AS", + "title": "Rep.", + "title_long": "Representative", + "website": "https://radewagen.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Mississippi's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "2243 Rayburn House Office Building Washington DC 20515-2401", + "office": "2243 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "K000388", + "birthday": "1966-03-01", + "cspanid": 97322, + "firstname": "Trent", + "gender": "male", + "gender_label": "Male", + "lastname": "Kelly", + "link": "https://www.govtrack.us/congress/members/trent_kelly/412673", + "middlename": "", + "name": "Rep. Trent Kelly [R-MS1]", + "namemod": "", + "nickname": "", + "osid": "N00037003", + "pvsid": "156389", + "sortname": "Kelly, Trent (Rep.) [R-MS1]", + "twitterid": "reptrentkelly", + "youtubeid": null + }, + "phone": "202-225-4306", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MS", + "title": "Rep.", + "title_long": "Representative", + "website": "https://trentkelly.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Illinois's 18th congressional district", + "district": 18, + "enddate": "2023-01-03", + "extra": { + "address": "1424 Longworth House Office Building Washington DC 20515-1318", + "office": "1424 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "L000585", + "birthday": "1968-07-05", + "cspanid": 70020, + "firstname": "Darin", + "gender": "male", + "gender_label": "Male", + "lastname": "LaHood", + "link": "https://www.govtrack.us/congress/members/darin_lahood/412674", + "middlename": "", + "name": "Rep. Darin LaHood [R-IL18]", + "namemod": "", + "nickname": "", + "osid": "N00037031", + "pvsid": "128760", + "sortname": "LaHood, Darin (Rep.) [R-IL18]", + "twitterid": "RepLaHood", + "youtubeid": null + }, + "phone": "202-225-6201", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "IL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://lahood.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Ohio's 8th congressional district", + "district": 8, + "enddate": "2023-01-03", + "extra": { + "address": "2113 Rayburn House Office Building Washington DC 20515-3508", + "office": "2113 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "D000626", + "birthday": "1970-03-01", + "cspanid": 102555, + "firstname": "Warren", + "gender": "male", + "gender_label": "Male", + "lastname": "Davidson", + "link": "https://www.govtrack.us/congress/members/warren_davidson/412675", + "middlename": "", + "name": "Rep. Warren Davidson [R-OH8]", + "namemod": "", + "nickname": "", + "osid": "N00038767", + "pvsid": "166760", + "sortname": "Davidson, Warren (Rep.) [R-OH8]", + "twitterid": "WarrenDavidson", + "youtubeid": null + }, + "phone": "202-225-6205", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "OH", + "title": "Rep.", + "title_long": "Representative", + "website": "https://davidson.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Kentucky's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "2410 Rayburn House Office Building Washington DC 20515-1701", + "office": "2410 Rayburn House Office Building", + "rss_url": "https://comer.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "C001108", + "birthday": "1972-08-19", + "cspanid": 76619, + "firstname": "James", + "gender": "male", + "gender_label": "Male", + "lastname": "Comer", + "link": "https://www.govtrack.us/congress/members/james_comer/412676", + "middlename": "", + "name": "Rep. James Comer [R-KY1]", + "namemod": "", + "nickname": "", + "osid": "N00038260", + "pvsid": "35169", + "sortname": "Comer, James (Rep.) [R-KY1]", + "twitterid": "RepJamesComer", + "youtubeid": null + }, + "phone": "202-225-3115", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "KY", + "title": "Rep.", + "title_long": "Representative", + "website": "https://comer.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Pennsylvania's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "1105 Longworth House Office Building Washington DC 20515-3803", + "office": "1105 Longworth House Office Building", + "rss_url": "https://evans.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "E000296", + "birthday": "1954-05-16", + "cspanid": 56729, + "firstname": "Dwight", + "gender": "male", + "gender_label": "Male", + "lastname": "Evans", + "link": "https://www.govtrack.us/congress/members/dwight_evans/412677", + "middlename": "", + "name": "Rep. Dwight Evans [D-PA3]", + "namemod": "", + "nickname": "", + "osid": "N00038450", + "pvsid": "9128", + "sortname": "Evans, Dwight (Rep.) [D-PA3]", + "twitterid": "RepDwightEvans", + "youtubeid": null + }, + "phone": "202-225-4001", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "PA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://evans.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Illinois's 10th congressional district", + "district": 10, + "enddate": "2023-01-03", + "extra": { + "address": "300 Cannon House Office Building Washington DC 20515-1310", + "office": "300 Cannon House Office Building", + "rss_url": "http://schneider.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "S001190", + "birthday": "1961-08-20", + "cspanid": 63948, + "firstname": "Bradley", + "gender": "male", + "gender_label": "Male", + "lastname": "Schneider", + "link": "https://www.govtrack.us/congress/members/bradley_schneider/412534", + "middlename": "Scott", + "name": "Rep. Bradley “Brad” Schneider [D-IL10]", + "namemod": "", + "nickname": "Brad", + "osid": "N00033101", + "pvsid": "134948", + "sortname": "Schneider, Bradley “Brad” (Rep.) [D-IL10]", + "twitterid": "repschneider", + "youtubeid": "RepBradSchneider" + }, + "phone": "202-225-4835", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "IL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://schneider.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Arizona's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "318 Cannon House Office Building Washington DC 20515-0301", + "office": "318 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "O000171", + "birthday": "1946-01-24", + "cspanid": 104523, + "firstname": "Tom", + "gender": "male", + "gender_label": "Male", + "lastname": "O’Halleran", + "link": "https://www.govtrack.us/congress/members/tom_ohalleran/412682", + "middlename": "", + "name": "Rep. Tom O’Halleran [D-AZ1]", + "namemod": "", + "nickname": "", + "osid": "N00037515", + "pvsid": "28499", + "sortname": "O’Halleran, Tom (Rep.) [D-AZ1]", + "twitterid": "repohalleran", + "youtubeid": null + }, + "phone": "202-225-3361", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "AZ", + "title": "Rep.", + "title_long": "Representative", + "website": "https://ohalleran.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Arizona's 5th congressional district", + "district": 5, + "enddate": "2023-01-03", + "extra": { + "address": "171 Cannon House Office Building Washington DC 20515-0305", + "office": "171 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "B001302", + "birthday": "1958-11-07", + "cspanid": 105145, + "firstname": "Andy", + "gender": "male", + "gender_label": "Male", + "lastname": "Biggs", + "link": "https://www.govtrack.us/congress/members/andy_biggs/412683", + "middlename": "", + "name": "Rep. Andy Biggs [R-AZ5]", + "namemod": "", + "nickname": "", + "osid": "N00039293", + "pvsid": "28088", + "sortname": "Biggs, Andy (Rep.) [R-AZ5]", + "twitterid": "RepAndyBiggsAZ", + "youtubeid": null + }, + "phone": "202-225-2635", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "AZ", + "title": "Rep.", + "title_long": "Representative", + "website": "https://biggs.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 17th congressional district", + "district": 17, + "enddate": "2023-01-03", + "extra": { + "address": "306 Cannon House Office Building Washington DC 20515-0517", + "office": "306 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "K000389", + "birthday": "1976-09-13", + "cspanid": 31129, + "firstname": "Ro", + "gender": "male", + "gender_label": "Male", + "lastname": "Khanna", + "link": "https://www.govtrack.us/congress/members/ro_khanna/412684", + "middlename": "", + "name": "Rep. Ro Khanna [D-CA17]", + "namemod": "", + "nickname": "", + "osid": "N00026427", + "pvsid": "29473", + "sortname": "Khanna, Ro (Rep.) [D-CA17]", + "twitterid": "RepRoKhanna", + "youtubeid": null + }, + "phone": "202-225-2631", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://khanna.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 20th congressional district", + "district": 20, + "enddate": "2023-01-03", + "extra": { + "address": "406 Cannon House Office Building Washington DC 20515-0520", + "office": "406 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "P000613", + "birthday": "1969-10-01", + "cspanid": 104727, + "firstname": "Jimmy", + "gender": "male", + "gender_label": "Male", + "lastname": "Panetta", + "link": "https://www.govtrack.us/congress/members/jimmy_panetta/412685", + "middlename": "", + "name": "Rep. Jimmy Panetta [D-CA20]", + "namemod": "", + "nickname": "", + "osid": "N00038601", + "pvsid": "169078", + "sortname": "Panetta, Jimmy (Rep.) [D-CA20]", + "twitterid": "RepJimmyPanetta", + "youtubeid": null + }, + "phone": "202-225-2861", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://panetta.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 24th congressional district", + "district": 24, + "enddate": "2023-01-03", + "extra": { + "address": "2331 Rayburn House Office Building Washington DC 20515-0524", + "office": "2331 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "C001112", + "birthday": "1964-11-18", + "cspanid": 104728, + "firstname": "Salud", + "gender": "male", + "gender_label": "Male", + "lastname": "Carbajal", + "link": "https://www.govtrack.us/congress/members/salud_carbajal/412686", + "middlename": "O.", + "name": "Rep. Salud Carbajal [D-CA24]", + "namemod": "", + "nickname": "", + "osid": "N00037015", + "pvsid": "81569", + "sortname": "Carbajal, Salud (Rep.) [D-CA24]", + "twitterid": "RepCarbajal", + "youtubeid": "repcarbajal" + }, + "phone": "202-225-3601", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://carbajal.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 44th congressional district", + "district": 44, + "enddate": "2023-01-03", + "extra": { + "address": "2246 Longworth House Office Building Washington DC 20515-0544", + "office": "2246 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "B001300", + "birthday": "1976-09-15", + "cspanid": 104730, + "firstname": "Nanette", + "gender": "female", + "gender_label": "Female", + "lastname": "Barragán", + "link": "https://www.govtrack.us/congress/members/nanette_barragan/412687", + "middlename": "Diaz", + "name": "Rep. Nanette Barragán [D-CA44]", + "namemod": "", + "nickname": "", + "osid": "N00037019", + "pvsid": "166270", + "sortname": "Barragán, Nanette (Rep.) [D-CA44]", + "twitterid": "RepBarragan", + "youtubeid": null + }, + "phone": "202-225-8220", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://barragan.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 46th congressional district", + "district": 46, + "enddate": "2023-01-03", + "extra": { + "address": "2301 Rayburn House Office Building Washington DC 20515-0546", + "office": "2301 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "C001110", + "birthday": "1958-01-24", + "cspanid": 46310, + "firstname": "J.", + "gender": "male", + "gender_label": "Male", + "lastname": "Correa", + "link": "https://www.govtrack.us/congress/members/luis_correa/412688", + "middlename": "Luis", + "name": "Rep. Luis Correa [D-CA46]", + "namemod": "", + "nickname": "", + "osid": "N00037260", + "pvsid": "9732", + "sortname": "Correa, Luis (Rep.) [D-CA46]", + "twitterid": "reploucorrea", + "youtubeid": null + }, + "phone": "202-225-2965", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://correa.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Delaware At Large", + "district": 0, + "enddate": "2023-01-03", + "extra": { + "address": "1724 Longworth House Office Building Washington DC 20515-0800", + "office": "1724 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "B001303", + "birthday": "1962-02-10", + "cspanid": 104772, + "firstname": "Lisa", + "gender": "female", + "gender_label": "Female", + "lastname": "Blunt Rochester", + "link": "https://www.govtrack.us/congress/members/lisa_blunt_rochester/412689", + "middlename": "", + "name": "Rep. Lisa Blunt Rochester [D-DE0]", + "namemod": "", + "nickname": "", + "osid": "N00038414", + "pvsid": "173249", + "sortname": "Blunt Rochester, Lisa (Rep.) [D-DE0]", + "twitterid": "RepLBR", + "youtubeid": null + }, + "phone": "202-225-4165", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "DE", + "title": "Rep.", + "title_long": "Representative", + "website": "https://bluntrochester.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Florida's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "1721 Longworth House Office Building Washington DC 20515-0901", + "office": "1721 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "G000578", + "birthday": "1982-05-07", + "cspanid": 104528, + "firstname": "Matt", + "gender": "male", + "gender_label": "Male", + "lastname": "Gaetz", + "link": "https://www.govtrack.us/congress/members/matt_gaetz/412690", + "middlename": "", + "name": "Rep. Matt Gaetz [R-FL1]", + "namemod": "", + "nickname": "", + "osid": "N00039503", + "pvsid": "117101", + "sortname": "Gaetz, Matt (Rep.) [R-FL1]", + "twitterid": "RepMattGaetz", + "youtubeid": null + }, + "phone": "202-225-4136", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "FL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://gaetz.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Florida's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "316 Cannon House Office Building Washington DC 20515-0902", + "office": "316 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "D000628", + "birthday": "1953-02-16", + "cspanid": 104529, + "firstname": "Neal", + "gender": "male", + "gender_label": "Male", + "lastname": "Dunn", + "link": "https://www.govtrack.us/congress/members/neal_dunn/412691", + "middlename": "P.", + "name": "Rep. Neal Dunn [R-FL2]", + "namemod": "", + "nickname": "", + "osid": "N00037442", + "pvsid": "166297", + "sortname": "Dunn, Neal (Rep.) [R-FL2]", + "twitterid": "drnealdunnfl2", + "youtubeid": null + }, + "phone": "202-225-5235", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "FL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://dunn.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Florida's 4th congressional district", + "district": 4, + "enddate": "2023-01-03", + "extra": { + "address": "1711 Longworth House Office Building Washington DC 20515-0904", + "office": "1711 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "R000609", + "birthday": "1952-09-02", + "cspanid": 104531, + "firstname": "John", + "gender": "male", + "gender_label": "Male", + "lastname": "Rutherford", + "link": "https://www.govtrack.us/congress/members/john_rutherford/412692", + "middlename": "H.", + "name": "Rep. John Rutherford [R-FL4]", + "namemod": "", + "nickname": "", + "osid": "N00039777", + "pvsid": "172542", + "sortname": "Rutherford, John (Rep.) [R-FL4]", + "twitterid": "RepRutherfordFL", + "youtubeid": null + }, + "phone": "202-225-2501", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "FL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://rutherford.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Florida's 5th congressional district", + "district": 5, + "enddate": "2023-01-03", + "extra": { + "address": "2437 Rayburn House Office Building Washington DC 20515-0905", + "office": "2437 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "L000586", + "birthday": "1948-09-23", + "cspanid": 90480, + "firstname": "Al", + "gender": "male", + "gender_label": "Male", + "lastname": "Lawson", + "link": "https://www.govtrack.us/congress/members/al_lawson/412693", + "middlename": "", + "name": "Rep. Al Lawson [D-FL5]", + "namemod": "Jr.", + "nickname": "", + "osid": "N00030642", + "pvsid": "24263", + "sortname": "Lawson, Al (Rep.) [D-FL5]", + "twitterid": "RepAlLawsonJr", + "youtubeid": null + }, + "phone": "202-225-0123", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "FL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://lawson.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Florida's 7th congressional district", + "district": 7, + "enddate": "2023-01-03", + "extra": { + "address": "1710 Longworth House Office Building Washington DC 20515-0907", + "office": "1710 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "M001202", + "birthday": "1978-09-16", + "cspanid": 103502, + "firstname": "Stephanie", + "gender": "female", + "gender_label": "Female", + "lastname": "Murphy", + "link": "https://www.govtrack.us/congress/members/stephanie_murphy/412694", + "middlename": "N.", + "name": "Rep. Stephanie Murphy [D-FL7]", + "namemod": "", + "nickname": "", + "osid": "N00040133", + "pvsid": "173426", + "sortname": "Murphy, Stephanie (Rep.) [D-FL7]", + "twitterid": "RepStephMurphy", + "youtubeid": "RepStephMurphy" + }, + "phone": "202-225-4035", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "FL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://murphy.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Florida's 9th congressional district", + "district": 9, + "enddate": "2023-01-03", + "extra": { + "address": "2353 Rayburn House Office Building Washington DC 20515-0909", + "office": "2353 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "S001200", + "birthday": "1978-02-25", + "cspanid": 104534, + "firstname": "Darren", + "gender": "male", + "gender_label": "Male", + "lastname": "Soto", + "link": "https://www.govtrack.us/congress/members/darren_soto/412695", + "middlename": "", + "name": "Rep. Darren Soto [D-FL9]", + "namemod": "", + "nickname": "", + "osid": "N00037422", + "pvsid": "67618", + "sortname": "Soto, Darren (Rep.) [D-FL9]", + "twitterid": "RepDarrenSoto", + "youtubeid": "repdarrensoto" + }, + "phone": "202-225-9889", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "FL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://soto.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Florida's 10th congressional district", + "district": 10, + "enddate": "2023-01-03", + "extra": { + "address": "217 Cannon House Office Building Washington DC 20515-0910", + "office": "217 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "D000627", + "birthday": "1957-03-12", + "cspanid": 623713, + "firstname": "Val", + "gender": "female", + "gender_label": "Female", + "lastname": "Demings", + "link": "https://www.govtrack.us/congress/members/val_demings/412696", + "middlename": "Butler", + "name": "Rep. Val Demings [D-FL10]", + "namemod": "", + "nickname": "", + "osid": "N00033449", + "pvsid": "137637", + "sortname": "Demings, Val (Rep.) [D-FL10]", + "twitterid": "RepValDemings", + "youtubeid": null + }, + "phone": "202-225-2176", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "FL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://demings.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Florida's 13th congressional district", + "district": 13, + "enddate": "2023-01-03", + "extra": { + "address": "215 Cannon House Office Building Washington DC 20515-0913", + "office": "215 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "C001111", + "birthday": "1956-07-24", + "cspanid": 7960, + "firstname": "Charlie", + "gender": "male", + "gender_label": "Male", + "lastname": "Crist", + "link": "https://www.govtrack.us/congress/members/charlie_crist/412697", + "middlename": "", + "name": "Rep. Charlie Crist [D-FL13]", + "namemod": "", + "nickname": "", + "osid": "N00002942", + "pvsid": "24311", + "sortname": "Crist, Charlie (Rep.) [D-FL13]", + "twitterid": "repcharliecrist", + "youtubeid": null + }, + "phone": "202-225-5961", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "FL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://crist.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Florida's 18th congressional district", + "district": 18, + "enddate": "2023-01-03", + "extra": { + "address": "2182 Rayburn House Office Building Washington DC 20515-0918", + "office": "2182 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "M001199", + "birthday": "1980-07-10", + "cspanid": 104540, + "firstname": "Brian", + "gender": "male", + "gender_label": "Male", + "lastname": "Mast", + "link": "https://www.govtrack.us/congress/members/brian_mast/412698", + "middlename": "J.", + "name": "Rep. Brian Mast [R-FL18]", + "namemod": "", + "nickname": "", + "osid": "N00037269", + "pvsid": "166245", + "sortname": "Mast, Brian (Rep.) [R-FL18]", + "twitterid": "repbrianmast", + "youtubeid": "repbrianmast" + }, + "phone": "202-225-3026", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "FL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://mast.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Georgia's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "1032 Longworth House Office Building Washington DC 20515-1003", + "office": "1032 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "F000465", + "birthday": "1966-11-15", + "cspanid": 104731, + "firstname": "A.", + "gender": "male", + "gender_label": "Male", + "lastname": "Ferguson", + "link": "https://www.govtrack.us/congress/members/drew_ferguson/412700", + "middlename": "Drew", + "name": "Rep. Drew Ferguson [R-GA3]", + "namemod": "IV", + "nickname": "", + "osid": "N00039090", + "pvsid": "168132", + "sortname": "Ferguson, Drew (Rep.) [R-GA3]", + "twitterid": "RepDrewFerguson", + "youtubeid": null + }, + "phone": "202-225-5901", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "GA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://ferguson.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Illinois's 8th congressional district", + "district": 8, + "enddate": "2023-01-03", + "extra": { + "address": "115 Cannon House Office Building Washington DC 20515-1308", + "office": "115 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "K000391", + "birthday": "1973-07-19", + "cspanid": 103408, + "firstname": "Raja", + "gender": "male", + "gender_label": "Male", + "lastname": "Krishnamoorthi", + "link": "https://www.govtrack.us/congress/members/raja_krishnamoorthi/412701", + "middlename": "", + "name": "Rep. Raja Krishnamoorthi [D-IL8]", + "namemod": "", + "nickname": "", + "osid": "N00033240", + "pvsid": "117519", + "sortname": "Krishnamoorthi, Raja (Rep.) [D-IL8]", + "twitterid": "congressmanraja", + "youtubeid": null + }, + "phone": "202-225-3711", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "IL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://krishnamoorthi.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Indiana's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "1713 Longworth House Office Building Washington DC 20515-1403", + "office": "1713 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "B001299", + "birthday": "1979-07-16", + "cspanid": 89806, + "firstname": "Jim", + "gender": "male", + "gender_label": "Male", + "lastname": "Banks", + "link": "https://www.govtrack.us/congress/members/jim_banks/412702", + "middlename": "", + "name": "Rep. Jim Banks [R-IN3]", + "namemod": "", + "nickname": "", + "osid": "N00037185", + "pvsid": "116801", + "sortname": "Banks, Jim (Rep.) [R-IN3]", + "twitterid": "RepJimBanks", + "youtubeid": null + }, + "phone": "202-225-4436", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "IN", + "title": "Rep.", + "title_long": "Representative", + "website": "https://banks.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Indiana's 9th congressional district", + "district": 9, + "enddate": "2023-01-03", + "extra": { + "address": "1641 Longworth House Office Building Washington DC 20515-1409", + "office": "1641 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "H001074", + "birthday": "1983-09-12", + "cspanid": 104247, + "firstname": "Trey", + "gender": "male", + "gender_label": "Male", + "lastname": "Hollingsworth", + "link": "https://www.govtrack.us/congress/members/trey_hollingsworth/412703", + "middlename": "", + "name": "Rep. Trey Hollingsworth [R-IN9]", + "namemod": "", + "nickname": "", + "osid": "N00038429", + "pvsid": "167423", + "sortname": "Hollingsworth, Trey (Rep.) [R-IN9]", + "twitterid": "reptrey", + "youtubeid": null + }, + "phone": "202-225-5315", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "IN", + "title": "Rep.", + "title_long": "Representative", + "website": "https://hollingsworth.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Louisiana's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "572 Cannon House Office Building Washington DC 20515-1803", + "office": "572 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "H001077", + "birthday": "1961-08-24", + "cspanid": 106094, + "firstname": "Clay", + "gender": "male", + "gender_label": "Male", + "lastname": "Higgins", + "link": "https://www.govtrack.us/congress/members/clay_higgins/412705", + "middlename": "", + "name": "Rep. Clay Higgins [R-LA3]", + "namemod": "", + "nickname": "", + "osid": "N00039953", + "pvsid": "174484", + "sortname": "Higgins, Clay (Rep.) [R-LA3]", + "twitterid": "RepClayHiggins", + "youtubeid": null + }, + "phone": "202-225-2031", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "LA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://clayhiggins.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Louisiana's 4th congressional district", + "district": 4, + "enddate": "2023-01-03", + "extra": { + "address": "568 Cannon House Office Building Washington DC 20515-1804", + "office": "568 Cannon House Office Building" + }, + "leadership_title": "House Republican Conference Vice Chair", + "party": "Republican", + "person": { + "bioguideid": "J000299", + "birthday": "1972-01-30", + "cspanid": 106095, + "firstname": "Mike", + "gender": "male", + "gender_label": "Male", + "lastname": "Johnson", + "link": "https://www.govtrack.us/congress/members/mike_johnson/412706", + "middlename": "", + "name": "Rep. Mike Johnson [R-LA4]", + "namemod": "", + "nickname": "", + "osid": "N00039106", + "pvsid": "156097", + "sortname": "Johnson, Mike (Rep.) [R-LA4]", + "twitterid": "RepMikeJohnson", + "youtubeid": null + }, + "phone": "202-225-2777", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "LA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://mikejohnson.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Maryland's 4th congressional district", + "district": 4, + "enddate": "2023-01-03", + "extra": { + "address": "1323 Longworth House Office Building Washington DC 20515-2004", + "office": "1323 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "B001304", + "birthday": "1961-11-21", + "cspanid": 1029537, + "firstname": "Anthony", + "gender": "male", + "gender_label": "Male", + "lastname": "Brown", + "link": "https://www.govtrack.us/congress/members/anthony_brown/412707", + "middlename": "G.", + "name": "Rep. Anthony Brown [D-MD4]", + "namemod": "", + "nickname": "", + "osid": "N00036999", + "pvsid": "19344", + "sortname": "Brown, Anthony (Rep.) [D-MD4]", + "twitterid": "RepAnthonyBrown", + "youtubeid": "RepAnthonyBrown" + }, + "phone": "202-225-8699", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MD", + "title": "Rep.", + "title_long": "Representative", + "website": "https://anthonybrown.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Maryland's 8th congressional district", + "district": 8, + "enddate": "2023-01-03", + "extra": { + "address": "2242 Rayburn House Office Building Washington DC 20515-2008", + "office": "2242 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "R000606", + "birthday": "1962-12-13", + "cspanid": 12924, + "firstname": "Jamie", + "gender": "male", + "gender_label": "Male", + "lastname": "Raskin", + "link": "https://www.govtrack.us/congress/members/jamie_raskin/412708", + "middlename": "", + "name": "Rep. Jamie Raskin [D-MD8]", + "namemod": "", + "nickname": "", + "osid": "N00037036", + "pvsid": "65904", + "sortname": "Raskin, Jamie (Rep.) [D-MD8]", + "twitterid": "repraskin", + "youtubeid": null + }, + "phone": "202-225-5341", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MD", + "title": "Rep.", + "title_long": "Representative", + "website": "https://raskin.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Michigan's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "566 Cannon House Office Building Washington DC 20515-2201", + "office": "566 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "B001301", + "birthday": "1947-02-02", + "cspanid": 1020529, + "firstname": "Jack", + "gender": "male", + "gender_label": "Male", + "lastname": "Bergman", + "link": "https://www.govtrack.us/congress/members/jack_bergman/412709", + "middlename": "", + "name": "Rep. Jack Bergman [R-MI1]", + "namemod": "", + "nickname": "", + "osid": "N00039533", + "pvsid": "170172", + "sortname": "Bergman, Jack (Rep.) [R-MI1]", + "twitterid": "RepJackBergman", + "youtubeid": "RepJackBergman" + }, + "phone": "202-225-4735", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MI", + "title": "Rep.", + "title_long": "Representative", + "website": "https://bergman.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for North Carolina's 13th congressional district", + "district": 13, + "enddate": "2023-01-03", + "extra": { + "address": "103 Cannon House Office Building Washington DC 20515-3313", + "office": "103 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "B001305", + "birthday": "1971-10-21", + "cspanid": 103513, + "firstname": "Ted", + "gender": "male", + "gender_label": "Male", + "lastname": "Budd", + "link": "https://www.govtrack.us/congress/members/ted_budd/412712", + "middlename": "", + "name": "Rep. Ted Budd [R-NC13]", + "namemod": "", + "nickname": "", + "osid": "N00039551", + "pvsid": "171489", + "sortname": "Budd, Ted (Rep.) [R-NC13]", + "twitterid": "RepTedBudd", + "youtubeid": null + }, + "phone": "202-225-4531", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NC", + "title": "Rep.", + "title_long": "Representative", + "website": "https://budd.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Nebraska's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "1024 Longworth House Office Building Washington DC 20515-2702", + "office": "1024 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "B001298", + "birthday": "1963-08-16", + "cspanid": 103442, + "firstname": "Don", + "gender": "male", + "gender_label": "Male", + "lastname": "Bacon", + "link": "https://www.govtrack.us/congress/members/don_bacon/412713", + "middlename": "", + "name": "Rep. Don Bacon [R-NE2]", + "namemod": "", + "nickname": "", + "osid": "N00037049", + "pvsid": "166299", + "sortname": "Bacon, Don (Rep.) [R-NE2]", + "twitterid": "repdonbacon", + "youtubeid": null + }, + "phone": "202-225-4155", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NE", + "title": "Rep.", + "title_long": "Representative", + "website": "https://bacon.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New Jersey's 5th congressional district", + "district": 5, + "enddate": "2023-01-03", + "extra": { + "address": "203 Cannon House Office Building Washington DC 20515-3005", + "office": "203 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "G000583", + "birthday": "1975-03-08", + "cspanid": 9275683, + "firstname": "Josh", + "gender": "male", + "gender_label": "Male", + "lastname": "Gottheimer", + "link": "https://www.govtrack.us/congress/members/josh_gottheimer/412714", + "middlename": "", + "name": "Rep. Josh Gottheimer [D-NJ5]", + "namemod": "", + "nickname": "", + "osid": "N00036944", + "pvsid": "169202", + "sortname": "Gottheimer, Josh (Rep.) [D-NJ5]", + "twitterid": "RepJoshG", + "youtubeid": null + }, + "phone": "202-225-4465", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NJ", + "title": "Rep.", + "title_long": "Representative", + "website": "https://gottheimer.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New York's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "407 Cannon House Office Building Washington DC 20515-3203", + "office": "407 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "S001201", + "birthday": "1962-08-31", + "cspanid": 104747, + "firstname": "Thomas", + "gender": "male", + "gender_label": "Male", + "lastname": "Suozzi", + "link": "https://www.govtrack.us/congress/members/thomas_suozzi/412717", + "middlename": "R.", + "name": "Rep. Thomas Suozzi [D-NY3]", + "namemod": "", + "nickname": "", + "osid": "N00038742", + "pvsid": "92111", + "sortname": "Suozzi, Thomas (Rep.) [D-NY3]", + "twitterid": "RepTomSuozzi", + "youtubeid": null + }, + "phone": "202-225-3335", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NY", + "title": "Rep.", + "title_long": "Representative", + "website": "https://suozzi.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New York's 13th congressional district", + "district": 13, + "enddate": "2023-01-03", + "extra": { + "address": "2332 Rayburn House Office Building Washington DC 20515-3213", + "office": "2332 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "E000297", + "birthday": "1954-09-27", + "cspanid": 68413, + "firstname": "Adriano", + "gender": "male", + "gender_label": "Male", + "lastname": "Espaillat", + "link": "https://www.govtrack.us/congress/members/adriano_espaillat/412718", + "middlename": "", + "name": "Rep. Adriano Espaillat [D-NY13]", + "namemod": "", + "nickname": "", + "osid": "N00034549", + "pvsid": "14379", + "sortname": "Espaillat, Adriano (Rep.) [D-NY13]", + "twitterid": "RepEspaillat", + "youtubeid": null + }, + "phone": "202-225-4365", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NY", + "title": "Rep.", + "title_long": "Representative", + "website": "https://espaillat.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Pennsylvania's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "271 Cannon House Office Building Washington DC 20515-3801", + "office": "271 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "F000466", + "birthday": "1973-12-17", + "cspanid": 103537, + "firstname": "Brian", + "gender": "male", + "gender_label": "Male", + "lastname": "Fitzpatrick", + "link": "https://www.govtrack.us/congress/members/brian_fitzpatrick/412721", + "middlename": "K.", + "name": "Rep. Brian Fitzpatrick [R-PA1]", + "namemod": "", + "nickname": "", + "osid": "N00038779", + "pvsid": "167708", + "sortname": "Fitzpatrick, Brian (Rep.) [R-PA1]", + "twitterid": "repbrianfitz", + "youtubeid": null + }, + "phone": "202-225-4276", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "PA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://fitzpatrick.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Pennsylvania's 11th congressional district", + "district": 11, + "enddate": "2023-01-03", + "extra": { + "address": "302 Cannon House Office Building Washington DC 20515-3811", + "office": "302 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "S001199", + "birthday": "1964-01-23", + "cspanid": 103540, + "firstname": "Lloyd", + "gender": "male", + "gender_label": "Male", + "lastname": "Smucker", + "link": "https://www.govtrack.us/congress/members/lloyd_smucker/412722", + "middlename": "", + "name": "Rep. Lloyd Smucker [R-PA11]", + "namemod": "", + "nickname": "", + "osid": "N00038781", + "pvsid": "102454", + "sortname": "Smucker, Lloyd (Rep.) [R-PA11]", + "twitterid": "RepSmucker", + "youtubeid": null + }, + "phone": "202-225-2411", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "PA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://smucker.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Resident Commissioner for Puerto Rico", + "district": 0, + "enddate": "2023-01-03", + "extra": { + "address": "2338 Rayburn House Office Building Washington DC 20515-5401", + "office": "2338 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "G000582", + "birthday": "1976-08-05", + "cspanid": 67353, + "firstname": "Jenniffer", + "gender": "female", + "gender_label": "Female", + "lastname": "González-Colón", + "link": "https://www.govtrack.us/congress/members/jenniffer_gonzalez_colon/412723", + "middlename": "", + "name": "Commish. Jenniffer González-Colón [R-PR0]", + "namemod": "", + "nickname": "", + "osid": "N00037615", + "pvsid": null, + "sortname": "González-Colón, Jenniffer (Commish.) [R-PR0]", + "twitterid": "repjenniffer", + "youtubeid": null + }, + "phone": "202-225-2615", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "PR", + "title": "Commish.", + "title_long": "Resident Commissioner", + "website": "https://gonzalez-colon.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Tennessee's 8th congressional district", + "district": 8, + "enddate": "2023-01-03", + "extra": { + "address": "560 Cannon House Office Building Washington DC 20515-4208", + "office": "560 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "K000392", + "birthday": "1966-10-08", + "cspanid": 28903, + "firstname": "David", + "gender": "male", + "gender_label": "Male", + "lastname": "Kustoff", + "link": "https://www.govtrack.us/congress/members/david_kustoff/412724", + "middlename": "", + "name": "Rep. David Kustoff [R-TN8]", + "namemod": "", + "nickname": "", + "osid": "N00025445", + "pvsid": "48997", + "sortname": "Kustoff, David (Rep.) [R-TN8]", + "twitterid": "repdavidkustoff", + "youtubeid": null + }, + "phone": "202-225-4714", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TN", + "title": "Rep.", + "title_long": "Representative", + "website": "https://kustoff.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Texas's 15th congressional district", + "district": 15, + "enddate": "2023-01-03", + "extra": { + "address": "113 Cannon House Office Building Washington DC 20515-4315", + "office": "113 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "G000581", + "birthday": "1967-09-04", + "cspanid": 103568, + "firstname": "Vicente", + "gender": "male", + "gender_label": "Male", + "lastname": "Gonzalez", + "link": "https://www.govtrack.us/congress/members/vicente_gonzalez/412725", + "middlename": "", + "name": "Rep. Vicente Gonzalez [D-TX15]", + "namemod": "", + "nickname": "", + "osid": "N00038809", + "pvsid": "166483", + "sortname": "Gonzalez, Vicente (Rep.) [D-TX15]", + "twitterid": "RepGonzalez", + "youtubeid": null + }, + "phone": "202-225-2531", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TX", + "title": "Rep.", + "title_long": "Representative", + "website": "https://gonzalez.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Texas's 19th congressional district", + "district": 19, + "enddate": "2023-01-03", + "extra": { + "address": "1107 Longworth House Office Building Washington DC 20515-4319", + "office": "1107 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "A000375", + "birthday": "1972-03-09", + "cspanid": 1016482, + "firstname": "Jodey", + "gender": "male", + "gender_label": "Male", + "lastname": "Arrington", + "link": "https://www.govtrack.us/congress/members/jodey_arrington/412726", + "middlename": "C.", + "name": "Rep. Jodey Arrington [R-TX19]", + "namemod": "", + "nickname": "", + "osid": "N00038285", + "pvsid": "155685", + "sortname": "Arrington, Jodey (Rep.) [R-TX19]", + "twitterid": "RepArrington", + "youtubeid": null + }, + "phone": "202-225-4005", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TX", + "title": "Rep.", + "title_long": "Representative", + "website": "https://arrington.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Virginia's 4th congressional district", + "district": 4, + "enddate": "2023-01-03", + "extra": { + "address": "314 Cannon House Office Building Washington DC 20515-4604", + "office": "314 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "M001200", + "birthday": "1961-10-10", + "cspanid": 103621, + "firstname": "A.", + "gender": "male", + "gender_label": "Male", + "lastname": "McEachin", + "link": "https://www.govtrack.us/congress/members/donald_mceachin/412728", + "middlename": "Donald", + "name": "Rep. Donald McEachin [D-VA4]", + "namemod": "", + "nickname": "", + "osid": "N00039327", + "pvsid": "8230", + "sortname": "McEachin, Donald (Rep.) [D-VA4]", + "twitterid": "RepMcEachin", + "youtubeid": null + }, + "phone": "202-225-6365", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "VA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://mceachin.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Washington's 7th congressional district", + "district": 7, + "enddate": "2023-01-03", + "extra": { + "address": "2346 Rayburn House Office Building Washington DC 20515-4707", + "office": "2346 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "J000298", + "birthday": "1965-09-21", + "cspanid": 9267128, + "firstname": "Pramila", + "gender": "female", + "gender_label": "Female", + "lastname": "Jayapal", + "link": "https://www.govtrack.us/congress/members/pramila_jayapal/412730", + "middlename": "", + "name": "Rep. Pramila Jayapal [D-WA7]", + "namemod": "", + "nickname": "", + "osid": "N00038858", + "pvsid": "153141", + "sortname": "Jayapal, Pramila (Rep.) [D-WA7]", + "twitterid": "RepJayapal", + "youtubeid": null + }, + "phone": "202-225-3106", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "WA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://jayapal.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Wisconsin's 8th congressional district", + "district": 8, + "enddate": "2023-01-03", + "extra": { + "address": "1230 Longworth House Office Building Washington DC 20515-4908", + "office": "1230 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "G000579", + "birthday": "1984-03-03", + "cspanid": 104067, + "firstname": "Mike", + "gender": "male", + "gender_label": "Male", + "lastname": "Gallagher", + "link": "https://www.govtrack.us/congress/members/mike_gallagher/412731", + "middlename": "", + "name": "Rep. Mike Gallagher [R-WI8]", + "namemod": "", + "nickname": "", + "osid": "N00039330", + "pvsid": "171843", + "sortname": "Gallagher, Mike (Rep.) [R-WI8]", + "twitterid": "RepGallagher", + "youtubeid": null + }, + "phone": "202-225-5665", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "WI", + "title": "Rep.", + "title_long": "Representative", + "website": "https://gallagher.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Wyoming At Large", + "district": 0, + "enddate": "2023-01-03", + "extra": { + "address": "416 Cannon House Office Building Washington DC 20515-5000", + "office": "416 Cannon House Office Building" + }, + "leadership_title": "House Republican Conference Chair", + "party": "Republican", + "person": { + "bioguideid": "C001109", + "birthday": "1966-07-28", + "cspanid": 86147, + "firstname": "Liz", + "gender": "female", + "gender_label": "Female", + "lastname": "Cheney", + "link": "https://www.govtrack.us/congress/members/liz_cheney/412732", + "middlename": "", + "name": "Rep. Liz Cheney [R-WY0]", + "namemod": "", + "nickname": "", + "osid": "N00035504", + "pvsid": "171319", + "sortname": "Cheney, Liz (Rep.) [R-WY0]", + "twitterid": "RepLizCheney", + "youtubeid": null + }, + "phone": "202-225-2311", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "WY", + "title": "Rep.", + "title_long": "Representative", + "website": "https://cheney.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Kansas's 4th congressional district", + "district": 4, + "enddate": "2023-01-03", + "extra": { + "address": "2411 Rayburn House Office Building Washington DC 20515-1604", + "office": "2411 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "E000298", + "birthday": "1956-07-19", + "cspanid": 107963, + "firstname": "Ron", + "gender": "male", + "gender_label": "Male", + "lastname": "Estes", + "link": "https://www.govtrack.us/congress/members/ron_estes/412735", + "middlename": "", + "name": "Rep. Ron Estes [R-KS4]", + "namemod": "", + "nickname": "", + "osid": "N00040712", + "pvsid": "125031", + "sortname": "Estes, Ron (Rep.) [R-KS4]", + "twitterid": "RepRonEstes", + "youtubeid": null + }, + "phone": "202-225-6216", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "KS", + "title": "Rep.", + "title_long": "Representative", + "website": "https://estes.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for South Carolina's 5th congressional district", + "district": 5, + "enddate": "2023-01-03", + "extra": { + "address": "569 Cannon House Office Building Washington DC 20515-4005", + "office": "569 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "N000190", + "birthday": "1953-06-20", + "cspanid": 61996, + "firstname": "Ralph", + "gender": "male", + "gender_label": "Male", + "lastname": "Norman", + "link": "https://www.govtrack.us/congress/members/ralph_norman/412738", + "middlename": "", + "name": "Rep. Ralph Norman [R-SC5]", + "namemod": "", + "nickname": "", + "osid": "N00027783", + "pvsid": "47930", + "sortname": "Norman, Ralph (Rep.) [R-SC5]", + "twitterid": "RepRalphNorman", + "youtubeid": null + }, + "phone": "202-225-5501", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "SC", + "title": "Rep.", + "title_long": "Representative", + "website": "https://norman.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 34th congressional district", + "district": 34, + "enddate": "2023-01-03", + "extra": { + "address": "1530 Longworth House Office Building Washington DC 20515-0534", + "office": "1530 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "G000585", + "birthday": "1974-11-25", + "cspanid": 108883, + "firstname": "Jimmy", + "gender": "male", + "gender_label": "Male", + "lastname": "Gomez", + "link": "https://www.govtrack.us/congress/members/jimmy_gomez/412739", + "middlename": "", + "name": "Rep. Jimmy Gomez [D-CA34]", + "namemod": "", + "nickname": "", + "osid": "N00040597", + "pvsid": "138524", + "sortname": "Gomez, Jimmy (Rep.) [D-CA34]", + "twitterid": "RepJimmyGomez", + "youtubeid": null + }, + "phone": "202-225-6235", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://gomez.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Utah's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "2400 Rayburn House Office Building Washington DC 20515-4403", + "office": "2400 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "C001114", + "birthday": "1960-05-10", + "cspanid": null, + "firstname": "John", + "gender": "male", + "gender_label": "Male", + "lastname": "Curtis", + "link": "https://www.govtrack.us/congress/members/john_curtis/412740", + "middlename": "R.", + "name": "Rep. John Curtis [R-UT3]", + "namemod": "", + "nickname": "", + "osid": "N00041221", + "pvsid": "123390", + "sortname": "Curtis, John (Rep.) [R-UT3]", + "twitterid": "RepJohnCurtis", + "youtubeid": null + }, + "phone": "202-225-7751", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "UT", + "title": "Rep.", + "title_long": "Representative", + "website": "https://curtis.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Pennsylvania's 17th congressional district", + "district": 17, + "enddate": "2023-01-03", + "extra": { + "address": "1224 Longworth House Office Building Washington DC 20515-3817", + "office": "1224 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "L000588", + "birthday": "1984-06-27", + "cspanid": null, + "firstname": "Conor", + "gender": "male", + "gender_label": "Male", + "lastname": "Lamb", + "link": "https://www.govtrack.us/congress/members/conor_lamb/412744", + "middlename": "", + "name": "Rep. Conor Lamb [D-PA17]", + "namemod": "", + "nickname": "", + "osid": "N00041870", + "pvsid": "177656", + "sortname": "Lamb, Conor (Rep.) [D-PA17]", + "twitterid": "RepConorLamb", + "youtubeid": null + }, + "phone": "202-225-2301", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "PA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://lamb.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Arizona's 8th congressional district", + "district": 8, + "enddate": "2023-01-03", + "extra": { + "address": "1214 Longworth House Office Building Washington DC 20515-0308", + "office": "1214 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "L000589", + "birthday": "1958-11-14", + "cspanid": null, + "firstname": "Debbie", + "gender": "female", + "gender_label": "Female", + "lastname": "Lesko", + "link": "https://www.govtrack.us/congress/members/debbie_lesko/412745", + "middlename": "", + "name": "Rep. Debbie Lesko [R-AZ8]", + "namemod": "", + "nickname": "", + "osid": "N00042056", + "pvsid": "106483", + "sortname": "Lesko, Debbie (Rep.) [R-AZ8]", + "twitterid": "RepDLesko", + "youtubeid": null + }, + "phone": "202-225-4576", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "AZ", + "title": "Rep.", + "title_long": "Representative", + "website": "https://lesko.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Texas's 27th congressional district", + "district": 27, + "enddate": "2023-01-03", + "extra": { + "address": "512 Cannon House Office Building Washington DC 20515-4327", + "office": "512 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "C001115", + "birthday": "1975-05-13", + "cspanid": 10322, + "firstname": "Michael", + "gender": "male", + "gender_label": "Male", + "lastname": "Cloud", + "link": "https://www.govtrack.us/congress/members/michael_cloud/412746", + "middlename": "", + "name": "Rep. Michael Cloud [R-TX27]", + "namemod": "", + "nickname": "", + "osid": "N00041882", + "pvsid": "177350", + "sortname": "Cloud, Michael (Rep.) [R-TX27]", + "twitterid": "RepCloudTX", + "youtubeid": null + }, + "phone": "202-225-7742", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TX", + "title": "Rep.", + "title_long": "Representative", + "website": "https://cloud.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Ohio's 12th congressional district", + "district": 12, + "enddate": "2023-01-03", + "extra": { + "address": "2429 Rayburn House Office Building Washington DC 20515-3512", + "office": "2429 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "B001306", + "birthday": "1962-01-16", + "cspanid": null, + "firstname": "Troy", + "gender": "male", + "gender_label": "Male", + "lastname": "Balderson", + "link": "https://www.govtrack.us/congress/members/troy_balderson/412747", + "middlename": "", + "name": "Rep. Troy Balderson [R-OH12]", + "namemod": "", + "nickname": "", + "osid": "N00042194", + "pvsid": "102781", + "sortname": "Balderson, Troy (Rep.) [R-OH12]", + "twitterid": "RepBalderson", + "youtubeid": null + }, + "phone": "202-225-5355", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "OH", + "title": "Rep.", + "title_long": "Representative", + "website": "https://balderson.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Oklahoma's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "1019 Longworth House Office Building Washington DC 20515-3601", + "office": "1019 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "H001082", + "birthday": "1961-12-04", + "cspanid": null, + "firstname": "Kevin", + "gender": "male", + "gender_label": "Male", + "lastname": "Hern", + "link": "https://www.govtrack.us/congress/members/kevin_hern/412748", + "middlename": "R.", + "name": "Rep. Kevin Hern [R-OK1]", + "namemod": "", + "nickname": "", + "osid": "N00040829", + "pvsid": "180004", + "sortname": "Hern, Kevin (Rep.) [R-OK1]", + "twitterid": "repkevinhern", + "youtubeid": null + }, + "phone": "202-225-2211", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "OK", + "title": "Rep.", + "title_long": "Representative", + "website": "https://hern.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New York's 25th congressional district", + "district": 25, + "enddate": "2023-01-03", + "extra": { + "address": "1317 Longworth House Office Building Washington DC 20515-3225", + "office": "1317 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "M001206", + "birthday": "1957-04-29", + "cspanid": null, + "firstname": "Joseph", + "gender": "male", + "gender_label": "Male", + "lastname": "Morelle", + "link": "https://www.govtrack.us/congress/members/joseph_morelle/412749", + "middlename": "D.", + "name": "Rep. Joseph Morelle [D-NY25]", + "namemod": "", + "nickname": "", + "osid": "N00043207", + "pvsid": "4362", + "sortname": "Morelle, Joseph (Rep.) [D-NY25]", + "twitterid": "RepJoeMorelle", + "youtubeid": null + }, + "phone": "202-225-3615", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NY", + "title": "Rep.", + "title_long": "Representative", + "website": "https://morelle.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Pennsylvania's 5th congressional district", + "district": 5, + "enddate": "2023-01-03", + "extra": { + "address": "1227 Longworth House Office Building Washington DC 20515-3805", + "office": "1227 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "S001205", + "birthday": "1959-08-30", + "cspanid": null, + "firstname": "Mary", + "gender": "female", + "gender_label": "Female", + "lastname": "Scanlon", + "link": "https://www.govtrack.us/congress/members/mary_scanlon/412750", + "middlename": "Gay", + "name": "Rep. Mary Scanlon [D-PA5]", + "namemod": "", + "nickname": "", + "osid": "N00042706", + "pvsid": "178890", + "sortname": "Scanlon, Mary (Rep.) [D-PA5]", + "twitterid": "RepMGS", + "youtubeid": null + }, + "phone": "202-225-2011", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "PA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://scanlon.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Pennsylvania's 7th congressional district", + "district": 7, + "enddate": "2023-01-03", + "extra": { + "address": "1027 Longworth House Office Building Washington DC 20515-3807", + "office": "1027 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "W000826", + "birthday": "1957-06-07", + "cspanid": null, + "firstname": "Susan", + "gender": "female", + "gender_label": "Female", + "lastname": "Wild", + "link": "https://www.govtrack.us/congress/members/susan_wild/412751", + "middlename": "Ellis", + "name": "Rep. Susan Wild [D-PA7]", + "namemod": "", + "nickname": "", + "osid": "N00041997", + "pvsid": "178895", + "sortname": "Wild, Susan (Rep.) [D-PA7]", + "twitterid": "RepSusanWild", + "youtubeid": null + }, + "phone": "202-225-6411", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "PA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://wild.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Hawaii's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "2210 Rayburn House Office Building Washington DC 20515-1101", + "office": "2210 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "C001055", + "birthday": "1952-09-27", + "cspanid": null, + "firstname": "Ed", + "gender": "male", + "gender_label": "Male", + "lastname": "Case", + "link": "https://www.govtrack.us/congress/members/ed_case/400069", + "middlename": "", + "name": "Rep. Ed Case [D-HI1]", + "namemod": "", + "nickname": "", + "osid": "N00025882", + "pvsid": null, + "sortname": "Case, Ed (Rep.) [D-HI1]", + "twitterid": "RepEdCase", + "youtubeid": null + }, + "phone": "202-225-2726", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "HI", + "title": "Rep.", + "title_long": "Representative", + "website": "https://case.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Nevada's 4th congressional district", + "district": 4, + "enddate": "2023-01-03", + "extra": { + "address": "562 Cannon House Office Building Washington DC 20515-2804", + "office": "562 Cannon House Office Building", + "rss_url": "http://horsford.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "H001066", + "birthday": "1973-04-29", + "cspanid": 79614, + "firstname": "Steven", + "gender": "male", + "gender_label": "Male", + "lastname": "Horsford", + "link": "https://www.govtrack.us/congress/members/steven_horsford/412559", + "middlename": "A.", + "name": "Rep. Steven Horsford [D-NV4]", + "namemod": "", + "nickname": "", + "osid": "N00033638", + "pvsid": "44064", + "sortname": "Horsford, Steven (Rep.) [D-NV4]", + "twitterid": "RepHorsford", + "youtubeid": null + }, + "phone": "202-225-9894", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NV", + "title": "Rep.", + "title_long": "Representative", + "website": "https://horsford.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Arizona's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "309 Cannon House Office Building Washington DC 20515-0302", + "office": "309 Cannon House Office Building", + "rss_url": "http://kirkpatrick.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "K000368", + "birthday": "1950-03-24", + "cspanid": 1031338, + "firstname": "Ann", + "gender": "female", + "gender_label": "Female", + "lastname": "Kirkpatrick", + "link": "https://www.govtrack.us/congress/members/ann_kirkpatrick/412286", + "middlename": "", + "name": "Rep. Ann Kirkpatrick [D-AZ2]", + "namemod": "", + "nickname": "", + "osid": "N00029260", + "pvsid": "28425", + "sortname": "Kirkpatrick, Ann (Rep.) [D-AZ2]", + "twitterid": "RepKirkpatrick", + "youtubeid": null + }, + "phone": "202-225-2542", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "AZ", + "title": "Rep.", + "title_long": "Representative", + "website": "https://kirkpatrick.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Arizona's 9th congressional district", + "district": 9, + "enddate": "2023-01-03", + "extra": { + "address": "207 Cannon House Office Building Washington DC 20515-0309", + "office": "207 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "S001211", + "birthday": "1970-03-08", + "cspanid": null, + "firstname": "Greg", + "gender": "male", + "gender_label": "Male", + "lastname": "Stanton", + "link": "https://www.govtrack.us/congress/members/greg_stanton/412753", + "middlename": "", + "name": "Rep. Greg Stanton [D-AZ9]", + "namemod": "", + "nickname": "", + "osid": "N00041750", + "pvsid": "72030", + "sortname": "Stanton, Greg (Rep.) [D-AZ9]", + "twitterid": "RepGregStanton", + "youtubeid": null + }, + "phone": "202-225-9888", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "AZ", + "title": "Rep.", + "title_long": "Representative", + "website": "https://stanton.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 10th congressional district", + "district": 10, + "enddate": "2023-01-03", + "extra": { + "address": "209 Cannon House Office Building Washington DC 20515-0510", + "office": "209 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "H001090", + "birthday": "1986-08-01", + "cspanid": null, + "firstname": "Josh", + "gender": "male", + "gender_label": "Male", + "lastname": "Harder", + "link": "https://www.govtrack.us/congress/members/josh_harder/412754", + "middlename": "", + "name": "Rep. Josh Harder [D-CA10]", + "namemod": "", + "nickname": "", + "osid": "N00040853", + "pvsid": "179326", + "sortname": "Harder, Josh (Rep.) [D-CA10]", + "twitterid": "RepJoshHarder", + "youtubeid": null + }, + "phone": "202-225-4540", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://harder.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 45th congressional district", + "district": 45, + "enddate": "2023-01-03", + "extra": { + "address": "1117 Longworth House Office Building Washington DC 20515-0545", + "office": "1117 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "P000618", + "birthday": "1974-01-03", + "cspanid": null, + "firstname": "Katie", + "gender": "female", + "gender_label": "Female", + "lastname": "Porter", + "link": "https://www.govtrack.us/congress/members/katie_porter/412758", + "middlename": "", + "name": "Rep. Katie Porter [D-CA45]", + "namemod": "", + "nickname": "", + "osid": "N00040865", + "pvsid": "179393", + "sortname": "Porter, Katie (Rep.) [D-CA45]", + "twitterid": "RepKatiePorter", + "youtubeid": null + }, + "phone": "202-225-5611", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://porter.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 49th congressional district", + "district": 49, + "enddate": "2023-01-03", + "extra": { + "address": "1030 Longworth House Office Building Washington DC 20515-0549", + "office": "1030 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "L000593", + "birthday": "1978-10-28", + "cspanid": null, + "firstname": "Mike", + "gender": "male", + "gender_label": "Male", + "lastname": "Levin", + "link": "https://www.govtrack.us/congress/members/mike_levin/412760", + "middlename": "", + "name": "Rep. Mike Levin [D-CA49]", + "namemod": "", + "nickname": "", + "osid": "N00040667", + "pvsid": "179416", + "sortname": "Levin, Mike (Rep.) [D-CA49]", + "twitterid": "RepMikeLevin", + "youtubeid": null + }, + "phone": "202-225-3906", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://mikelevin.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Colorado's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "1419 Longworth House Office Building Washington DC 20515-0602", + "office": "1419 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "N000191", + "birthday": "1984-05-13", + "cspanid": null, + "firstname": "Joe", + "gender": "male", + "gender_label": "Male", + "lastname": "Neguse", + "link": "https://www.govtrack.us/congress/members/joe_neguse/412761", + "middlename": "", + "name": "Rep. Joe Neguse [D-CO2]", + "namemod": "", + "nickname": "", + "osid": "N00041080", + "pvsid": "151075", + "sortname": "Neguse, Joe (Rep.) [D-CO2]", + "twitterid": "RepJoeNeguse", + "youtubeid": null + }, + "phone": "202-225-2161", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CO", + "title": "Rep.", + "title_long": "Representative", + "website": "https://neguse.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Colorado's 6th congressional district", + "district": 6, + "enddate": "2023-01-03", + "extra": { + "address": "1229 Longworth House Office Building Washington DC 20515-0606", + "office": "1229 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "C001121", + "birthday": "1979-03-15", + "cspanid": null, + "firstname": "Jason", + "gender": "male", + "gender_label": "Male", + "lastname": "Crow", + "link": "https://www.govtrack.us/congress/members/jason_crow/412762", + "middlename": "", + "name": "Rep. Jason Crow [D-CO6]", + "namemod": "", + "nickname": "", + "osid": "N00040876", + "pvsid": "180218", + "sortname": "Crow, Jason (Rep.) [D-CO6]", + "twitterid": "RepJasonCrow", + "youtubeid": null + }, + "phone": "202-225-7882", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CO", + "title": "Rep.", + "title_long": "Representative", + "website": "https://crow.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Connecticut's 5th congressional district", + "district": 5, + "enddate": "2023-01-03", + "extra": { + "address": "1415 Longworth House Office Building Washington DC 20515-0705", + "office": "1415 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "H001081", + "birthday": "1973-03-08", + "cspanid": null, + "firstname": "Jahana", + "gender": "female", + "gender_label": "Female", + "lastname": "Hayes", + "link": "https://www.govtrack.us/congress/members/jahana_hayes/412763", + "middlename": "", + "name": "Rep. Jahana Hayes [D-CT5]", + "namemod": "", + "nickname": "", + "osid": "N00043421", + "pvsid": "181744", + "sortname": "Hayes, Jahana (Rep.) [D-CT5]", + "twitterid": "RepJahanaHayes", + "youtubeid": null + }, + "phone": "202-225-4476", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CT", + "title": "Rep.", + "title_long": "Representative", + "website": "https://hayes.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Florida's 6th congressional district", + "district": 6, + "enddate": "2023-01-03", + "extra": { + "address": "213 Cannon House Office Building Washington DC 20515-0906", + "office": "213 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "W000823", + "birthday": "1974-01-31", + "cspanid": null, + "firstname": "Michael", + "gender": "male", + "gender_label": "Male", + "lastname": "Waltz", + "link": "https://www.govtrack.us/congress/members/michael_waltz/412764", + "middlename": "", + "name": "Rep. Michael Waltz [R-FL6]", + "namemod": "", + "nickname": "", + "osid": "N00042403", + "pvsid": "182261", + "sortname": "Waltz, Michael (Rep.) [R-FL6]", + "twitterid": "RepMichaelWaltz", + "youtubeid": null + }, + "phone": "202-225-2706", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "FL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://waltz.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Florida's 17th congressional district", + "district": 17, + "enddate": "2023-01-03", + "extra": { + "address": "2457 Rayburn House Office Building Washington DC 20515-0917", + "office": "2457 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "S001214", + "birthday": "1978-05-19", + "cspanid": null, + "firstname": "W.", + "gender": "male", + "gender_label": "Male", + "lastname": "Steube", + "link": "https://www.govtrack.us/congress/members/gregory_steube/412766", + "middlename": "Gregory", + "name": "Rep. Gregory Steube [R-FL17]", + "namemod": "", + "nickname": "", + "osid": "N00042808", + "pvsid": "117248", + "sortname": "Steube, Gregory (Rep.) [R-FL17]", + "twitterid": "RepGregSteube", + "youtubeid": null + }, + "phone": "202-225-5792", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "FL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://steube.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Georgia's 6th congressional district", + "district": 6, + "enddate": "2023-01-03", + "extra": { + "address": "1513 Longworth House Office Building Washington DC 20515-1006", + "office": "1513 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "M001208", + "birthday": "1960-06-01", + "cspanid": null, + "firstname": "Lucy", + "gender": "female", + "gender_label": "Female", + "lastname": "McBath", + "link": "https://www.govtrack.us/congress/members/lucy_mcbath/412769", + "middlename": "", + "name": "Rep. Lucy McBath [D-GA6]", + "namemod": "", + "nickname": "", + "osid": "N00042813", + "pvsid": "178538", + "sortname": "McBath, Lucy (Rep.) [D-GA6]", + "twitterid": "replucymcbath", + "youtubeid": null + }, + "phone": "202-225-4501", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "GA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://mcbath.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Guam", + "district": 0, + "enddate": "2023-01-03", + "extra": { + "address": "1632 Longworth House Office Building Washington DC 20515-5301", + "office": "1632 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "S001204", + "birthday": "1981-01-30", + "cspanid": null, + "firstname": "Michael", + "gender": "male", + "gender_label": "Male", + "lastname": "San Nicolas", + "link": "https://www.govtrack.us/congress/members/michael_san_nicolas/412770", + "middlename": "F. Q.", + "name": "Rep. Michael San Nicolas [D-GU0]", + "namemod": "", + "nickname": "", + "osid": "N00042619", + "pvsid": null, + "sortname": "San Nicolas, Michael (Rep.) [D-GU0]", + "twitterid": "GuamCongressman", + "youtubeid": null + }, + "phone": "202-225-1188", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "GU", + "title": "Rep.", + "title_long": "Representative", + "website": "https://sannicolas.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Iowa's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "1034 Longworth House Office Building Washington DC 20515-1503", + "office": "1034 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "A000378", + "birthday": "1965-04-20", + "cspanid": null, + "firstname": "Cynthia", + "gender": "female", + "gender_label": "Female", + "lastname": "Axne", + "link": "https://www.govtrack.us/congress/members/cynthia_axne/412772", + "middlename": "", + "name": "Rep. Cynthia Axne [D-IA3]", + "namemod": "", + "nickname": "", + "osid": "N00041104", + "pvsid": "179226", + "sortname": "Axne, Cynthia (Rep.) [D-IA3]", + "twitterid": "RepCindyAxne", + "youtubeid": null + }, + "phone": "202-225-5476", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "IA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://axne.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Idaho's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "1520 Longworth House Office Building Washington DC 20515-1201", + "office": "1520 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "F000469", + "birthday": "1973-07-19", + "cspanid": null, + "firstname": "Russ", + "gender": "male", + "gender_label": "Male", + "lastname": "Fulcher", + "link": "https://www.govtrack.us/congress/members/russ_fulcher/412773", + "middlename": "", + "name": "Rep. Russ Fulcher [R-ID1]", + "namemod": "", + "nickname": "", + "osid": "N00041335", + "pvsid": "33091", + "sortname": "Fulcher, Russ (Rep.) [R-ID1]", + "twitterid": "RepRussFulcher", + "youtubeid": null + }, + "phone": "202-225-6611", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "ID", + "title": "Rep.", + "title_long": "Representative", + "website": "https://fulcher.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Illinois's 4th congressional district", + "district": 4, + "enddate": "2023-01-03", + "extra": { + "address": "1519 Longworth House Office Building Washington DC 20515-1304", + "office": "1519 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "G000586", + "birthday": "1956-04-12", + "cspanid": null, + "firstname": "Jesús", + "gender": "male", + "gender_label": "Male", + "lastname": "García", + "link": "https://www.govtrack.us/congress/members/jesus_garcia/412774", + "middlename": "G.", + "name": "Rep. Jesús “Chuy” García [D-IL4]", + "namemod": "", + "nickname": "Chuy", + "osid": "N00042114", + "pvsid": "6261", + "sortname": "García, Jesús “Chuy” (Rep.) [D-IL4]", + "twitterid": "RepChuyGarcia", + "youtubeid": null + }, + "phone": "202-225-8203", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "IL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://chuygarcia.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Illinois's 6th congressional district", + "district": 6, + "enddate": "2023-01-03", + "extra": { + "address": "2440 Rayburn House Office Building Washington DC 20515-1306", + "office": "2440 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "C001117", + "birthday": "1971-11-23", + "cspanid": null, + "firstname": "Sean", + "gender": "male", + "gender_label": "Male", + "lastname": "Casten", + "link": "https://www.govtrack.us/congress/members/sean_casten/412775", + "middlename": "", + "name": "Rep. Sean Casten [D-IL6]", + "namemod": "", + "nickname": "", + "osid": "N00041338", + "pvsid": "176982", + "sortname": "Casten, Sean (Rep.) [D-IL6]", + "twitterid": "RepCasten", + "youtubeid": null + }, + "phone": "202-225-4561", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "IL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://casten.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Illinois's 14th congressional district", + "district": 14, + "enddate": "2023-01-03", + "extra": { + "address": "1130 Longworth House Office Building Washington DC 20515-1314", + "office": "1130 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "U000040", + "birthday": "1986-10-04", + "cspanid": null, + "firstname": "Lauren", + "gender": "female", + "gender_label": "Female", + "lastname": "Underwood", + "link": "https://www.govtrack.us/congress/members/lauren_underwood/412776", + "middlename": "", + "name": "Rep. Lauren Underwood [D-IL14]", + "namemod": "", + "nickname": "", + "osid": "N00041569", + "pvsid": "177001", + "sortname": "Underwood, Lauren (Rep.) [D-IL14]", + "twitterid": "RepUnderwood", + "youtubeid": null + }, + "phone": "202-225-2976", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "IL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://underwood.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Indiana's 4th congressional district", + "district": 4, + "enddate": "2023-01-03", + "extra": { + "address": "1314 Longworth House Office Building Washington DC 20515-1404", + "office": "1314 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "B001307", + "birthday": "1945-06-04", + "cspanid": null, + "firstname": "James", + "gender": "male", + "gender_label": "Male", + "lastname": "Baird", + "link": "https://www.govtrack.us/congress/members/james_baird/412777", + "middlename": "R.", + "name": "Rep. James Baird [R-IN4]", + "namemod": "", + "nickname": "", + "osid": "N00041954", + "pvsid": "86013", + "sortname": "Baird, James (Rep.) [R-IN4]", + "twitterid": "RepJimBaird", + "youtubeid": null + }, + "phone": "202-225-5037", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "IN", + "title": "Rep.", + "title_long": "Representative", + "website": "https://baird.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Indiana's 6th congressional district", + "district": 6, + "enddate": "2023-01-03", + "extra": { + "address": "211 Cannon House Office Building Washington DC 20515-1406", + "office": "211 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "P000615", + "birthday": "1956-11-14", + "cspanid": null, + "firstname": "Greg", + "gender": "male", + "gender_label": "Male", + "lastname": "Pence", + "link": "https://www.govtrack.us/congress/members/greg_pence/412778", + "middlename": "", + "name": "Rep. Greg Pence [R-IN6]", + "namemod": "", + "nickname": "", + "osid": "N00041956", + "pvsid": "177876", + "sortname": "Pence, Greg (Rep.) [R-IN6]", + "twitterid": "RepGregPence", + "youtubeid": null + }, + "phone": "202-225-3021", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "IN", + "title": "Rep.", + "title_long": "Representative", + "website": "https://pence.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Kansas's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "1541 Longworth House Office Building Washington DC 20515-1603", + "office": "1541 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "D000629", + "birthday": "1980-05-22", + "cspanid": null, + "firstname": "Sharice", + "gender": "female", + "gender_label": "Female", + "lastname": "Davids", + "link": "https://www.govtrack.us/congress/members/sharice_davids/412780", + "middlename": "", + "name": "Rep. Sharice Davids [D-KS3]", + "namemod": "", + "nickname": "", + "osid": "N00042626", + "pvsid": "181201", + "sortname": "Davids, Sharice (Rep.) [D-KS3]", + "twitterid": "RepDavids", + "youtubeid": null + }, + "phone": "202-225-2865", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "KS", + "title": "Rep.", + "title_long": "Representative", + "website": "https://davids.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Massachusetts's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "2439 Rayburn House Office Building Washington DC 20515-2103", + "office": "2439 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "T000482", + "birthday": "1973-10-27", + "cspanid": null, + "firstname": "Lori", + "gender": "female", + "gender_label": "Female", + "lastname": "Trahan", + "link": "https://www.govtrack.us/congress/members/lori_trahan/412781", + "middlename": "", + "name": "Rep. Lori Trahan [D-MA3]", + "namemod": "", + "nickname": "", + "osid": "N00041808", + "pvsid": "182310", + "sortname": "Trahan, Lori (Rep.) [D-MA3]", + "twitterid": "RepLoriTrahan", + "youtubeid": null + }, + "phone": "202-225-3411", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://trahan.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Massachusetts's 7th congressional district", + "district": 7, + "enddate": "2023-01-03", + "extra": { + "address": "1108 Longworth House Office Building Washington DC 20515-2107", + "office": "1108 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "P000617", + "birthday": "1974-02-03", + "cspanid": null, + "firstname": "Ayanna", + "gender": "female", + "gender_label": "Female", + "lastname": "Pressley", + "link": "https://www.govtrack.us/congress/members/ayanna_pressley/412782", + "middlename": "", + "name": "Rep. Ayanna Pressley [D-MA7]", + "namemod": "", + "nickname": "", + "osid": "N00042581", + "pvsid": "122700", + "sortname": "Pressley, Ayanna (Rep.) [D-MA7]", + "twitterid": "RepPressley", + "youtubeid": null + }, + "phone": "202-225-5111", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://pressley.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Maryland's 6th congressional district", + "district": 6, + "enddate": "2023-01-03", + "extra": { + "address": "1110 Longworth House Office Building Washington DC 20515-2006", + "office": "1110 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "T000483", + "birthday": "1955-09-21", + "cspanid": null, + "firstname": "David", + "gender": "male", + "gender_label": "Male", + "lastname": "Trone", + "link": "https://www.govtrack.us/congress/members/david_trone/412783", + "middlename": "J.", + "name": "Rep. David Trone [D-MD6]", + "namemod": "", + "nickname": "", + "osid": "N00039122", + "pvsid": "167336", + "sortname": "Trone, David (Rep.) [D-MD6]", + "twitterid": "repdavidtrone", + "youtubeid": null + }, + "phone": "202-225-2721", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MD", + "title": "Rep.", + "title_long": "Representative", + "website": "https://trone.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Michigan's 8th congressional district", + "district": 8, + "enddate": "2023-01-03", + "extra": { + "address": "1210 Longworth House Office Building Washington DC 20515-2208", + "office": "1210 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "S001208", + "birthday": "1976-07-10", + "cspanid": null, + "firstname": "Elissa", + "gender": "female", + "gender_label": "Female", + "lastname": "Slotkin", + "link": "https://www.govtrack.us/congress/members/elissa_slotkin/412784", + "middlename": "", + "name": "Rep. Elissa Slotkin [D-MI8]", + "namemod": "", + "nickname": "", + "osid": "N00041357", + "pvsid": "181080", + "sortname": "Slotkin, Elissa (Rep.) [D-MI8]", + "twitterid": "RepSlotkin", + "youtubeid": null + }, + "phone": "202-225-4872", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MI", + "title": "Rep.", + "title_long": "Representative", + "website": "https://slotkin.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Michigan's 9th congressional district", + "district": 9, + "enddate": "2023-01-03", + "extra": { + "address": "312 Cannon House Office Building Washington DC 20515-2209", + "office": "312 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "L000592", + "birthday": "1960-08-01", + "cspanid": null, + "firstname": "Andy", + "gender": "male", + "gender_label": "Male", + "lastname": "Levin", + "link": "https://www.govtrack.us/congress/members/andy_levin/412785", + "middlename": "", + "name": "Rep. Andy Levin [D-MI9]", + "namemod": "", + "nickname": "", + "osid": "N00042149", + "pvsid": "66287", + "sortname": "Levin, Andy (Rep.) [D-MI9]", + "twitterid": "RepAndyLevin", + "youtubeid": null + }, + "phone": "202-225-4961", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MI", + "title": "Rep.", + "title_long": "Representative", + "website": "https://andylevin.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Michigan's 11th congressional district", + "district": 11, + "enddate": "2023-01-03", + "extra": { + "address": "1510 Longworth House Office Building Washington DC 20515-2211", + "office": "1510 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "S001215", + "birthday": "1983-06-24", + "cspanid": null, + "firstname": "Haley", + "gender": "female", + "gender_label": "Female", + "lastname": "Stevens", + "link": "https://www.govtrack.us/congress/members/haley_stevens/412786", + "middlename": "M.", + "name": "Rep. Haley Stevens [D-MI11]", + "namemod": "", + "nickname": "", + "osid": "N00040915", + "pvsid": "181092", + "sortname": "Stevens, Haley (Rep.) [D-MI11]", + "twitterid": "RepHaleyStevens", + "youtubeid": null + }, + "phone": "202-225-8171", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MI", + "title": "Rep.", + "title_long": "Representative", + "website": "https://stevens.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Michigan's 13th congressional district", + "district": 13, + "enddate": "2023-01-03", + "extra": { + "address": "1628 Longworth House Office Building Washington DC 20515-2213", + "office": "1628 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "T000481", + "birthday": "1976-07-24", + "cspanid": null, + "firstname": "Rashida", + "gender": "female", + "gender_label": "Female", + "lastname": "Tlaib", + "link": "https://www.govtrack.us/congress/members/rashida_tlaib/412787", + "middlename": "", + "name": "Rep. Rashida Tlaib [D-MI13]", + "namemod": "", + "nickname": "", + "osid": "N00042649", + "pvsid": "105368", + "sortname": "Tlaib, Rashida (Rep.) [D-MI13]", + "twitterid": "RepRashida", + "youtubeid": null + }, + "phone": "202-225-5126", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MI", + "title": "Rep.", + "title_long": "Representative", + "website": "https://tlaib.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Minnesota's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "1433 Longworth House Office Building Washington DC 20515-2301", + "office": "1433 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "H001088", + "birthday": "1962-08-04", + "cspanid": null, + "firstname": "Jim", + "gender": "male", + "gender_label": "Male", + "lastname": "Hagedorn", + "link": "https://www.govtrack.us/congress/members/jim_hagedorn/412788", + "middlename": "", + "name": "Rep. Jim Hagedorn [R-MN1]", + "namemod": "", + "nickname": "", + "osid": "N00031390", + "pvsid": "146027", + "sortname": "Hagedorn, Jim (Rep.) [R-MN1]", + "twitterid": "RepHagedorn", + "youtubeid": null + }, + "phone": "202-225-2472", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MN", + "title": "Rep.", + "title_long": "Representative", + "website": "https://hagedorn.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Minnesota's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "2442 Rayburn House Office Building Washington DC 20515-2302", + "office": "2442 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "C001119", + "birthday": "1972-02-14", + "cspanid": null, + "firstname": "Angie", + "gender": "female", + "gender_label": "Female", + "lastname": "Craig", + "link": "https://www.govtrack.us/congress/members/angie_craig/412789", + "middlename": "", + "name": "Rep. Angie Craig [D-MN2]", + "namemod": "", + "nickname": "", + "osid": "N00037039", + "pvsid": "166261", + "sortname": "Craig, Angie (Rep.) [D-MN2]", + "twitterid": "RepAngieCraig", + "youtubeid": null + }, + "phone": "202-225-2271", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MN", + "title": "Rep.", + "title_long": "Representative", + "website": "https://craig.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Minnesota's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "2452 Rayburn House Office Building Washington DC 20515-2303", + "office": "2452 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "P000616", + "birthday": "1969-01-20", + "cspanid": null, + "firstname": "Dean", + "gender": "male", + "gender_label": "Male", + "lastname": "Phillips", + "link": "https://www.govtrack.us/congress/members/dean_phillips/412790", + "middlename": "", + "name": "Rep. Dean Phillips [D-MN3]", + "namemod": "", + "nickname": "", + "osid": "N00041134", + "pvsid": "181357", + "sortname": "Phillips, Dean (Rep.) [D-MN3]", + "twitterid": "RepDeanPhillips", + "youtubeid": null + }, + "phone": "202-225-2871", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MN", + "title": "Rep.", + "title_long": "Representative", + "website": "https://phillips.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Minnesota's 5th congressional district", + "district": 5, + "enddate": "2023-01-03", + "extra": { + "address": "1730 Longworth House Office Building Washington DC 20515-2305", + "office": "1730 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "O000173", + "birthday": "1981-10-04", + "cspanid": null, + "firstname": "Ilhan", + "gender": "female", + "gender_label": "Female", + "lastname": "Omar", + "link": "https://www.govtrack.us/congress/members/ilhan_omar/412791", + "middlename": "", + "name": "Rep. Ilhan Omar [D-MN5]", + "namemod": "", + "nickname": "", + "osid": "N00043581", + "pvsid": "171628", + "sortname": "Omar, Ilhan (Rep.) [D-MN5]", + "twitterid": "Ilhan", + "youtubeid": null + }, + "phone": "202-225-4755", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MN", + "title": "Rep.", + "title_long": "Representative", + "website": "https://omar.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Minnesota's 8th congressional district", + "district": 8, + "enddate": "2023-01-03", + "extra": { + "address": "461 Cannon House Office Building Washington DC 20515-2308", + "office": "461 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "S001212", + "birthday": "1966-05-10", + "cspanid": null, + "firstname": "Pete", + "gender": "male", + "gender_label": "Male", + "lastname": "Stauber", + "link": "https://www.govtrack.us/congress/members/pete_stauber/412792", + "middlename": "", + "name": "Rep. Pete Stauber [R-MN8]", + "namemod": "", + "nickname": "", + "osid": "N00041511", + "pvsid": "159954", + "sortname": "Stauber, Pete (Rep.) [R-MN8]", + "twitterid": "RepPeteStauber", + "youtubeid": null + }, + "phone": "202-225-6211", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MN", + "title": "Rep.", + "title_long": "Representative", + "website": "https://stauber.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Mississippi's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "418 Cannon House Office Building Washington DC 20515-2403", + "office": "418 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "G000591", + "birthday": "1970-02-04", + "cspanid": null, + "firstname": "Michael", + "gender": "male", + "gender_label": "Male", + "lastname": "Guest", + "link": "https://www.govtrack.us/congress/members/michael_guest/412793", + "middlename": "", + "name": "Rep. Michael Guest [R-MS3]", + "namemod": "", + "nickname": "", + "osid": "N00042458", + "pvsid": null, + "sortname": "Guest, Michael (Rep.) [R-MS3]", + "twitterid": "RepMichaelGuest", + "youtubeid": null + }, + "phone": "202-225-5031", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MS", + "title": "Rep.", + "title_long": "Representative", + "website": "https://guest.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for North Dakota At Large", + "district": 0, + "enddate": "2023-01-03", + "extra": { + "address": "1740 Longworth House Office Building Washington DC 20515-3400", + "office": "1740 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "A000377", + "birthday": "1976-10-08", + "cspanid": null, + "firstname": "Kelly", + "gender": "male", + "gender_label": "Male", + "lastname": "Armstrong", + "link": "https://www.govtrack.us/congress/members/kelly_armstrong/412794", + "middlename": "", + "name": "Rep. Kelly Armstrong [R-ND0]", + "namemod": "", + "nickname": "", + "osid": "N00042868", + "pvsid": "139338", + "sortname": "Armstrong, Kelly (Rep.) [R-ND0]", + "twitterid": "RepArmstrongND", + "youtubeid": null + }, + "phone": "202-225-2611", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "ND", + "title": "Rep.", + "title_long": "Representative", + "website": "https://armstrong.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New Hampshire's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "319 Cannon House Office Building Washington DC 20515-2901", + "office": "319 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "P000614", + "birthday": "1980-06-04", + "cspanid": null, + "firstname": "Chris", + "gender": "male", + "gender_label": "Male", + "lastname": "Pappas", + "link": "https://www.govtrack.us/congress/members/chris_pappas/412795", + "middlename": "", + "name": "Rep. Chris Pappas [D-NH1]", + "namemod": "", + "nickname": "", + "osid": "N00042161", + "pvsid": "42635", + "sortname": "Pappas, Chris (Rep.) [D-NH1]", + "twitterid": "RepChrisPappas", + "youtubeid": null + }, + "phone": "202-225-5456", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NH", + "title": "Rep.", + "title_long": "Representative", + "website": "https://pappas.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New Jersey's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "2447 Rayburn House Office Building Washington DC 20515-3002", + "office": "2447 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "V000133", + "birthday": "1953-02-23", + "cspanid": null, + "firstname": "Jefferson", + "gender": "male", + "gender_label": "Male", + "lastname": "Van Drew", + "link": "https://www.govtrack.us/congress/members/jefferson_van_drew/412796", + "middlename": "", + "name": "Rep. Jefferson Van Drew [R-NJ2]", + "namemod": "", + "nickname": "", + "osid": "N00042164", + "pvsid": "24685", + "sortname": "Van Drew, Jefferson (Rep.) [R-NJ2]", + "twitterid": "CongressmanJVD", + "youtubeid": null + }, + "phone": "202-225-6572", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NJ", + "title": "Rep.", + "title_long": "Representative", + "website": "https://vandrew.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New Jersey's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "2444 Rayburn House Office Building Washington DC 20515-3003", + "office": "2444 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "K000394", + "birthday": "1982-07-12", + "cspanid": null, + "firstname": "Andy", + "gender": "male", + "gender_label": "Male", + "lastname": "Kim", + "link": "https://www.govtrack.us/congress/members/andy_kim/412797", + "middlename": "", + "name": "Rep. Andy Kim [D-NJ3]", + "namemod": "", + "nickname": "", + "osid": "N00041370", + "pvsid": "179640", + "sortname": "Kim, Andy (Rep.) [D-NJ3]", + "twitterid": "RepAndyKimNJ", + "youtubeid": null + }, + "phone": "202-225-4765", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NJ", + "title": "Rep.", + "title_long": "Representative", + "website": "https://kim.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New Jersey's 7th congressional district", + "district": 7, + "enddate": "2023-01-03", + "extra": { + "address": "1318 Longworth House Office Building Washington DC 20515-3007", + "office": "1318 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "M001203", + "birthday": "1965-09-23", + "cspanid": null, + "firstname": "Tom", + "gender": "male", + "gender_label": "Male", + "lastname": "Malinowski", + "link": "https://www.govtrack.us/congress/members/tom_malinowski/412798", + "middlename": "", + "name": "Rep. Tom Malinowski [D-NJ7]", + "namemod": "", + "nickname": "", + "osid": "N00041843", + "pvsid": "179645", + "sortname": "Malinowski, Tom (Rep.) [D-NJ7]", + "twitterid": "RepMalinowski", + "youtubeid": null + }, + "phone": "202-225-5361", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NJ", + "title": "Rep.", + "title_long": "Representative", + "website": "https://malinowski.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New Jersey's 11th congressional district", + "district": 11, + "enddate": "2023-01-03", + "extra": { + "address": "1414 Longworth House Office Building Washington DC 20515-3011", + "office": "1414 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "S001207", + "birthday": "1972-01-19", + "cspanid": null, + "firstname": "Mikie", + "gender": "female", + "gender_label": "Female", + "lastname": "Sherrill", + "link": "https://www.govtrack.us/congress/members/mikie_sherrill/412799", + "middlename": "", + "name": "Rep. Mikie Sherrill [D-NJ11]", + "namemod": "", + "nickname": "", + "osid": "N00041154", + "pvsid": "179651", + "sortname": "Sherrill, Mikie (Rep.) [D-NJ11]", + "twitterid": "RepSherrill", + "youtubeid": null + }, + "phone": "202-225-5034", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NJ", + "title": "Rep.", + "title_long": "Representative", + "website": "https://sherrill.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Nevada's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "365 Cannon House Office Building Washington DC 20515-2803", + "office": "365 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "L000590", + "birthday": "1966-11-07", + "cspanid": null, + "firstname": "Susie", + "gender": "female", + "gender_label": "Female", + "lastname": "Lee", + "link": "https://www.govtrack.us/congress/members/susie_lee/412802", + "middlename": "", + "name": "Rep. Susie Lee [D-NV3]", + "namemod": "", + "nickname": "", + "osid": "N00037247", + "pvsid": "169344", + "sortname": "Lee, Susie (Rep.) [D-NV3]", + "twitterid": "RepSusieLee", + "youtubeid": null + }, + "phone": "202-225-3252", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NV", + "title": "Rep.", + "title_long": "Representative", + "website": "https://susielee.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New York's 14th congressional district", + "district": 14, + "enddate": "2023-01-03", + "extra": { + "address": "216 Cannon House Office Building Washington DC 20515-3214", + "office": "216 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "O000172", + "birthday": "1989-10-13", + "cspanid": null, + "firstname": "Alexandria", + "gender": "female", + "gender_label": "Female", + "lastname": "Ocasio-Cortez", + "link": "https://www.govtrack.us/congress/members/alexandria_ocasio_cortez/412804", + "middlename": "", + "name": "Rep. Alexandria Ocasio-Cortez [D-NY14]", + "namemod": "", + "nickname": "", + "osid": "N00041162", + "pvsid": "180416", + "sortname": "Ocasio-Cortez, Alexandria (Rep.) [D-NY14]", + "twitterid": "RepAOC", + "youtubeid": null + }, + "phone": "202-225-3965", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NY", + "title": "Rep.", + "title_long": "Representative", + "website": "https://ocasio-cortez.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New York's 19th congressional district", + "district": 19, + "enddate": "2023-01-03", + "extra": { + "address": "1007 Longworth House Office Building Washington DC 20515-3219", + "office": "1007 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "D000630", + "birthday": "1977-01-19", + "cspanid": null, + "firstname": "Antonio", + "gender": "male", + "gender_label": "Male", + "lastname": "Delgado", + "link": "https://www.govtrack.us/congress/members/antonio_delgado/412805", + "middlename": "", + "name": "Rep. Antonio Delgado [D-NY19]", + "namemod": "", + "nickname": "", + "osid": "N00040741", + "pvsid": "180313", + "sortname": "Delgado, Antonio (Rep.) [D-NY19]", + "twitterid": "repdelgado", + "youtubeid": null + }, + "phone": "202-225-5614", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NY", + "title": "Rep.", + "title_long": "Representative", + "website": "https://delgado.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Ohio's 16th congressional district", + "district": 16, + "enddate": "2023-01-03", + "extra": { + "address": "2458 Rayburn House Office Building Washington DC 20515-3516", + "office": "2458 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "G000588", + "birthday": "1984-09-19", + "cspanid": null, + "firstname": "Anthony", + "gender": "male", + "gender_label": "Male", + "lastname": "Gonzalez", + "link": "https://www.govtrack.us/congress/members/anthony_gonzalez/412807", + "middlename": "", + "name": "Rep. Anthony Gonzalez [R-OH16]", + "namemod": "", + "nickname": "", + "osid": "N00041690", + "pvsid": "178867", + "sortname": "Gonzalez, Anthony (Rep.) [R-OH16]", + "twitterid": "RepAGonzalez", + "youtubeid": null + }, + "phone": "202-225-3876", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "OH", + "title": "Rep.", + "title_long": "Representative", + "website": "https://anthonygonzalez.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Pennsylvania's 4th congressional district", + "district": 4, + "enddate": "2023-01-03", + "extra": { + "address": "120 Cannon House Office Building Washington DC 20515-3804", + "office": "120 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "D000631", + "birthday": "1959-06-06", + "cspanid": null, + "firstname": "Madeleine", + "gender": "female", + "gender_label": "Female", + "lastname": "Dean", + "link": "https://www.govtrack.us/congress/members/madeleine_dean/412809", + "middlename": "", + "name": "Rep. Madeleine Dean [D-PA4]", + "namemod": "", + "nickname": "", + "osid": "N00042894", + "pvsid": "136484", + "sortname": "Dean, Madeleine (Rep.) [D-PA4]", + "twitterid": "RepDean", + "youtubeid": null + }, + "phone": "202-225-4731", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "PA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://dean.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Pennsylvania's 6th congressional district", + "district": 6, + "enddate": "2023-01-03", + "extra": { + "address": "1218 Longworth House Office Building Washington DC 20515-3806", + "office": "1218 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "H001085", + "birthday": "1967-06-05", + "cspanid": null, + "firstname": "Chrissy", + "gender": "female", + "gender_label": "Female", + "lastname": "Houlahan", + "link": "https://www.govtrack.us/congress/members/chrissy_houlahan/412810", + "middlename": "", + "name": "Rep. Chrissy Houlahan [D-PA6]", + "namemod": "", + "nickname": "", + "osid": "N00040949", + "pvsid": "178893", + "sortname": "Houlahan, Chrissy (Rep.) [D-PA6]", + "twitterid": "RepHoulahan", + "youtubeid": null + }, + "phone": "202-225-4315", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "PA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://houlahan.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Pennsylvania's 9th congressional district", + "district": 9, + "enddate": "2023-01-03", + "extra": { + "address": "414 Cannon House Office Building Washington DC 20515-3809", + "office": "414 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "M001204", + "birthday": "1964-02-10", + "cspanid": null, + "firstname": "Daniel", + "gender": "male", + "gender_label": "Male", + "lastname": "Meuser", + "link": "https://www.govtrack.us/congress/members/daniel_meuser/412811", + "middlename": "", + "name": "Rep. Daniel Meuser [R-PA9]", + "namemod": "", + "nickname": "", + "osid": "N00029416", + "pvsid": "102438", + "sortname": "Meuser, Daniel (Rep.) [R-PA9]", + "twitterid": "RepMeuser", + "youtubeid": null + }, + "phone": "202-225-6511", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "PA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://meuser.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Pennsylvania's 13th congressional district", + "district": 13, + "enddate": "2023-01-03", + "extra": { + "address": "1221 Longworth House Office Building Washington DC 20515-3813", + "office": "1221 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "J000302", + "birthday": "1957-02-08", + "cspanid": null, + "firstname": "John", + "gender": "male", + "gender_label": "Male", + "lastname": "Joyce", + "link": "https://www.govtrack.us/congress/members/john_joyce/412812", + "middlename": "", + "name": "Rep. John Joyce [R-PA13]", + "namemod": "", + "nickname": "", + "osid": "N00043242", + "pvsid": "178911", + "sortname": "Joyce, John (Rep.) [R-PA13]", + "twitterid": "RepJohnJoyce", + "youtubeid": null + }, + "phone": "202-225-2431", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "PA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://johnjoyce.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Pennsylvania's 14th congressional district", + "district": 14, + "enddate": "2023-01-03", + "extra": { + "address": "409 Cannon House Office Building Washington DC 20515-3814", + "office": "409 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "R000610", + "birthday": "1983-04-17", + "cspanid": null, + "firstname": "Guy", + "gender": "male", + "gender_label": "Male", + "lastname": "Reschenthaler", + "link": "https://www.govtrack.us/congress/members/guy_reschenthaler/412813", + "middlename": "", + "name": "Rep. Guy Reschenthaler [R-PA14]", + "namemod": "", + "nickname": "", + "osid": "N00041871", + "pvsid": "166004", + "sortname": "Reschenthaler, Guy (Rep.) [R-PA14]", + "twitterid": "GReschenthaler", + "youtubeid": null + }, + "phone": "202-225-2065", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "PA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://reschenthaler.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for South Carolina's 4th congressional district", + "district": 4, + "enddate": "2023-01-03", + "extra": { + "address": "267 Cannon House Office Building Washington DC 20515-4004", + "office": "267 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "T000480", + "birthday": "1984-04-30", + "cspanid": null, + "firstname": "William", + "gender": "male", + "gender_label": "Male", + "lastname": "Timmons", + "link": "https://www.govtrack.us/congress/members/william_timmons/412815", + "middlename": "R.", + "name": "Rep. William Timmons [R-SC4]", + "namemod": "", + "nickname": "", + "osid": "N00042715", + "pvsid": "168923", + "sortname": "Timmons, William (Rep.) [R-SC4]", + "twitterid": "RepTimmons", + "youtubeid": null + }, + "phone": "202-225-6030", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "SC", + "title": "Rep.", + "title_long": "Representative", + "website": "https://timmons.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for South Dakota At Large", + "district": 0, + "enddate": "2023-01-03", + "extra": { + "address": "1714 Longworth House Office Building Washington DC 20515-4100", + "office": "1714 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "J000301", + "birthday": "1976-09-30", + "cspanid": null, + "firstname": "Dusty", + "gender": "male", + "gender_label": "Male", + "lastname": "Johnson", + "link": "https://www.govtrack.us/congress/members/dusty_johnson/412816", + "middlename": "", + "name": "Rep. Dusty Johnson [R-SD0]", + "namemod": "", + "nickname": "", + "osid": "N00040559", + "pvsid": "48307", + "sortname": "Johnson, Dusty (Rep.) [R-SD0]", + "twitterid": "RepDustyJohnson", + "youtubeid": null + }, + "phone": "202-225-2801", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "SD", + "title": "Rep.", + "title_long": "Representative", + "website": "https://dustyjohnson.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Tennessee's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "1122 Longworth House Office Building Washington DC 20515-4202", + "office": "1122 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "B001309", + "birthday": "1964-08-25", + "cspanid": null, + "firstname": "Tim", + "gender": "male", + "gender_label": "Male", + "lastname": "Burchett", + "link": "https://www.govtrack.us/congress/members/tim_burchett/412817", + "middlename": "", + "name": "Rep. Tim Burchett [R-TN2]", + "namemod": "", + "nickname": "", + "osid": "N00041594", + "pvsid": "24379", + "sortname": "Burchett, Tim (Rep.) [R-TN2]", + "twitterid": "RepTimBurchett", + "youtubeid": null + }, + "phone": "202-225-5435", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TN", + "title": "Rep.", + "title_long": "Representative", + "website": "https://burchett.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Tennessee's 6th congressional district", + "district": 6, + "enddate": "2023-01-03", + "extra": { + "address": "1124 Longworth House Office Building Washington DC 20515-4206", + "office": "1124 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "R000612", + "birthday": "1965-02-23", + "cspanid": null, + "firstname": "John", + "gender": "male", + "gender_label": "Male", + "lastname": "Rose", + "link": "https://www.govtrack.us/congress/members/john_rose/412818", + "middlename": "W.", + "name": "Rep. John Rose [R-TN6]", + "namemod": "", + "nickname": "", + "osid": "N00041599", + "pvsid": "180452", + "sortname": "Rose, John (Rep.) [R-TN6]", + "twitterid": "RepJohnRose", + "youtubeid": null + }, + "phone": "202-225-4231", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TN", + "title": "Rep.", + "title_long": "Representative", + "website": "https://johnrose.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Tennessee's 7th congressional district", + "district": 7, + "enddate": "2023-01-03", + "extra": { + "address": "2446 Rayburn House Office Building Washington DC 20515-4207", + "office": "2446 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "G000590", + "birthday": "1964-11-08", + "cspanid": null, + "firstname": "Mark", + "gender": "male", + "gender_label": "Male", + "lastname": "Green", + "link": "https://www.govtrack.us/congress/members/mark_green/412819", + "middlename": "E.", + "name": "Rep. Mark Green [R-TN7]", + "namemod": "", + "nickname": "", + "osid": "N00041873", + "pvsid": "139030", + "sortname": "Green, Mark (Rep.) [R-TN7]", + "twitterid": "RepMarkGreen", + "youtubeid": null + }, + "phone": "202-225-2811", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TN", + "title": "Rep.", + "title_long": "Representative", + "website": "https://markgreen.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Texas's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "413 Cannon House Office Building Washington DC 20515-4302", + "office": "413 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "C001120", + "birthday": "1984-03-14", + "cspanid": null, + "firstname": "Dan", + "gender": "male", + "gender_label": "Male", + "lastname": "Crenshaw", + "link": "https://www.govtrack.us/congress/members/dan_crenshaw/412820", + "middlename": "", + "name": "Rep. Dan Crenshaw [R-TX2]", + "namemod": "", + "nickname": "", + "osid": "N00042224", + "pvsid": "177270", + "sortname": "Crenshaw, Dan (Rep.) [R-TX2]", + "twitterid": "RepDanCrenshaw", + "youtubeid": null + }, + "phone": "202-225-6565", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TX", + "title": "Rep.", + "title_long": "Representative", + "website": "https://crenshaw.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Texas's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "1404 Longworth House Office Building Washington DC 20515-4303", + "office": "1404 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "T000479", + "birthday": "1972-08-01", + "cspanid": null, + "firstname": "Van", + "gender": "male", + "gender_label": "Male", + "lastname": "Taylor", + "link": "https://www.govtrack.us/congress/members/van_taylor/412821", + "middlename": "", + "name": "Rep. Van Taylor [R-TX3]", + "namemod": "", + "nickname": "", + "osid": "N00027709", + "pvsid": "147737", + "sortname": "Taylor, Van (Rep.) [R-TX3]", + "twitterid": "RepVanTaylor", + "youtubeid": null + }, + "phone": "202-225-4201", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TX", + "title": "Rep.", + "title_long": "Representative", + "website": "https://vantaylor.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Texas's 5th congressional district", + "district": 5, + "enddate": "2023-01-03", + "extra": { + "address": "1722 Longworth House Office Building Washington DC 20515-4305", + "office": "1722 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "G000589", + "birthday": "1982-12-01", + "cspanid": null, + "firstname": "Lance", + "gender": "male", + "gender_label": "Male", + "lastname": "Gooden", + "link": "https://www.govtrack.us/congress/members/lance_gooden/412822", + "middlename": "", + "name": "Rep. Lance Gooden [R-TX5]", + "namemod": "", + "nickname": "", + "osid": "N00042237", + "pvsid": "177282", + "sortname": "Gooden, Lance (Rep.) [R-TX5]", + "twitterid": null, + "youtubeid": null + }, + "phone": "202-225-3484", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TX", + "title": "Rep.", + "title_long": "Representative", + "website": "https://gooden.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Texas's 7th congressional district", + "district": 7, + "enddate": "2023-01-03", + "extra": { + "address": "119 Cannon House Office Building Washington DC 20515-4307", + "office": "119 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "F000468", + "birthday": "1975-02-13", + "cspanid": null, + "firstname": "Lizzie", + "gender": "female", + "gender_label": "Female", + "lastname": "Fletcher", + "link": "https://www.govtrack.us/congress/members/lizzie_fletcher/412824", + "middlename": "", + "name": "Rep. Lizzie Fletcher [D-TX7]", + "namemod": "", + "nickname": "", + "osid": "N00041194", + "pvsid": "177031", + "sortname": "Fletcher, Lizzie (Rep.) [D-TX7]", + "twitterid": "RepFletcher", + "youtubeid": null + }, + "phone": "202-225-2571", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TX", + "title": "Rep.", + "title_long": "Representative", + "website": "https://fletcher.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Texas's 16th congressional district", + "district": 16, + "enddate": "2023-01-03", + "extra": { + "address": "1505 Longworth House Office Building Washington DC 20515-4316", + "office": "1505 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "E000299", + "birthday": "1969-09-15", + "cspanid": null, + "firstname": "Veronica", + "gender": "female", + "gender_label": "Female", + "lastname": "Escobar", + "link": "https://www.govtrack.us/congress/members/veronica_escobar/412825", + "middlename": "", + "name": "Rep. Veronica Escobar [D-TX16]", + "namemod": "", + "nickname": "", + "osid": "N00041702", + "pvsid": "99345", + "sortname": "Escobar, Veronica (Rep.) [D-TX16]", + "twitterid": "RepEscobar", + "youtubeid": null + }, + "phone": "202-225-4831", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TX", + "title": "Rep.", + "title_long": "Representative", + "website": "https://escobar.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Texas's 21st congressional district", + "district": 21, + "enddate": "2023-01-03", + "extra": { + "address": "1005 Longworth House Office Building Washington DC 20515-4321", + "office": "1005 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "R000614", + "birthday": "1972-08-07", + "cspanid": null, + "firstname": "Chip", + "gender": "male", + "gender_label": "Male", + "lastname": "Roy", + "link": "https://www.govtrack.us/congress/members/chip_roy/412826", + "middlename": "", + "name": "Rep. Chip Roy [R-TX21]", + "namemod": "", + "nickname": "", + "osid": "N00042268", + "pvsid": "177319", + "sortname": "Roy, Chip (Rep.) [R-TX21]", + "twitterid": "RepChipRoy", + "youtubeid": null + }, + "phone": "202-225-4236", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TX", + "title": "Rep.", + "title_long": "Representative", + "website": "https://roy.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Texas's 29th congressional district", + "district": 29, + "enddate": "2023-01-03", + "extra": { + "address": "1620 Longworth House Office Building Washington DC 20515-4329", + "office": "1620 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "G000587", + "birthday": "1950-09-06", + "cspanid": null, + "firstname": "Sylvia", + "gender": "female", + "gender_label": "Female", + "lastname": "Garcia", + "link": "https://www.govtrack.us/congress/members/sylvia_garcia/412827", + "middlename": "R.", + "name": "Rep. Sylvia Garcia [D-TX29]", + "namemod": "", + "nickname": "", + "osid": "N00042282", + "pvsid": "49734", + "sortname": "Garcia, Sylvia (Rep.) [D-TX29]", + "twitterid": "RepSylviaGarcia", + "youtubeid": null + }, + "phone": "202-225-1688", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TX", + "title": "Rep.", + "title_long": "Representative", + "website": "https://sylviagarcia.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Texas's 32nd congressional district", + "district": 32, + "enddate": "2023-01-03", + "extra": { + "address": "114 Cannon House Office Building Washington DC 20515-4332", + "office": "114 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "A000376", + "birthday": "1983-04-15", + "cspanid": null, + "firstname": "Colin", + "gender": "male", + "gender_label": "Male", + "lastname": "Allred", + "link": "https://www.govtrack.us/congress/members/colin_allred/412828", + "middlename": "Z.", + "name": "Rep. Colin Allred [D-TX32]", + "namemod": "", + "nickname": "", + "osid": "N00040989", + "pvsid": "177357", + "sortname": "Allred, Colin (Rep.) [D-TX32]", + "twitterid": "RepColinAllred", + "youtubeid": null + }, + "phone": "202-225-2231", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TX", + "title": "Rep.", + "title_long": "Representative", + "website": "https://allred.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Virginia's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "412 Cannon House Office Building Washington DC 20515-4602", + "office": "412 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "L000591", + "birthday": "1975-08-15", + "cspanid": null, + "firstname": "Elaine", + "gender": "female", + "gender_label": "Female", + "lastname": "Luria", + "link": "https://www.govtrack.us/congress/members/elaine_luria/412830", + "middlename": "G.", + "name": "Rep. Elaine Luria [D-VA2]", + "namemod": "", + "nickname": "", + "osid": "N00042293", + "pvsid": "179677", + "sortname": "Luria, Elaine (Rep.) [D-VA2]", + "twitterid": "RepElaineLuria", + "youtubeid": null + }, + "phone": "202-225-4215", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "VA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://luria.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Virginia's 6th congressional district", + "district": 6, + "enddate": "2023-01-03", + "extra": { + "address": "2443 Rayburn House Office Building Washington DC 20515-4606", + "office": "2443 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "C001118", + "birthday": "1972-02-29", + "cspanid": null, + "firstname": "Ben", + "gender": "male", + "gender_label": "Male", + "lastname": "Cline", + "link": "https://www.govtrack.us/congress/members/ben_cline/412832", + "middlename": "", + "name": "Rep. Ben Cline [R-VA6]", + "namemod": "", + "nickname": "", + "osid": "N00042296", + "pvsid": "50959", + "sortname": "Cline, Ben (Rep.) [R-VA6]", + "twitterid": "RepBenCline", + "youtubeid": null + }, + "phone": "202-225-5431", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "VA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://cline.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Virginia's 7th congressional district", + "district": 7, + "enddate": "2023-01-03", + "extra": { + "address": "1431 Longworth House Office Building Washington DC 20515-4607", + "office": "1431 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "S001209", + "birthday": "1979-08-07", + "cspanid": null, + "firstname": "Abigail", + "gender": "female", + "gender_label": "Female", + "lastname": "Spanberger", + "link": "https://www.govtrack.us/congress/members/abigail_spanberger/412833", + "middlename": "Davis", + "name": "Rep. Abigail Spanberger [D-VA7]", + "namemod": "", + "nickname": "", + "osid": "N00041418", + "pvsid": "179682", + "sortname": "Spanberger, Abigail (Rep.) [D-VA7]", + "twitterid": "RepSpanberger", + "youtubeid": null + }, + "phone": "202-225-2815", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "VA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://spanberger.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Virginia's 10th congressional district", + "district": 10, + "enddate": "2023-01-03", + "extra": { + "address": "1217 Longworth House Office Building Washington DC 20515-4610", + "office": "1217 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "W000825", + "birthday": "1968-05-27", + "cspanid": null, + "firstname": "Jennifer", + "gender": "female", + "gender_label": "Female", + "lastname": "Wexton", + "link": "https://www.govtrack.us/congress/members/jennifer_wexton/412834", + "middlename": "", + "name": "Rep. Jennifer Wexton [D-VA10]", + "namemod": "", + "nickname": "", + "osid": "N00041002", + "pvsid": "147013", + "sortname": "Wexton, Jennifer (Rep.) [D-VA10]", + "twitterid": "RepWexton", + "youtubeid": null + }, + "phone": "202-225-5136", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "VA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://wexton.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Washington's 8th congressional district", + "district": 8, + "enddate": "2023-01-03", + "extra": { + "address": "1123 Longworth House Office Building Washington DC 20515-4708", + "office": "1123 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "S001216", + "birthday": "1968-08-23", + "cspanid": null, + "firstname": "Kim", + "gender": "female", + "gender_label": "Female", + "lastname": "Schrier", + "link": "https://www.govtrack.us/congress/members/kim_schrier/412835", + "middlename": "", + "name": "Rep. Kim Schrier [D-WA8]", + "namemod": "", + "nickname": "", + "osid": "N00041606", + "pvsid": "181124", + "sortname": "Schrier, Kim (Rep.) [D-WA8]", + "twitterid": "RepKimSchrier", + "youtubeid": null + }, + "phone": "202-225-7761", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "WA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://schrier.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Wisconsin's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "1526 Longworth House Office Building Washington DC 20515-4901", + "office": "1526 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "S001213", + "birthday": "1981-03-30", + "cspanid": null, + "firstname": "Bryan", + "gender": "male", + "gender_label": "Male", + "lastname": "Steil", + "link": "https://www.govtrack.us/congress/members/bryan_steil/412836", + "middlename": "", + "name": "Rep. Bryan Steil [R-WI1]", + "namemod": "", + "nickname": "", + "osid": "N00043379", + "pvsid": "181289", + "sortname": "Steil, Bryan (Rep.) [R-WI1]", + "twitterid": "RepBryanSteil", + "youtubeid": null + }, + "phone": "202-225-3031", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "WI", + "title": "Rep.", + "title_long": "Representative", + "website": "https://steil.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for West Virginia's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "465 Cannon House Office Building Washington DC 20515-4803", + "office": "465 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "M001205", + "birthday": "1950-11-04", + "cspanid": null, + "firstname": "Carol", + "gender": "female", + "gender_label": "Female", + "lastname": "Miller", + "link": "https://www.govtrack.us/congress/members/carol_miller/412837", + "middlename": "D.", + "name": "Rep. Carol Miller [R-WV3]", + "namemod": "", + "nickname": "", + "osid": "N00041542", + "pvsid": "52123", + "sortname": "Miller, Carol (Rep.) [R-WV3]", + "twitterid": "RepCarolMiller", + "youtubeid": null + }, + "phone": "202-225-3452", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "WV", + "title": "Rep.", + "title_long": "Representative", + "website": "https://miller.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Maine's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "1222 Longworth House Office Building Washington DC 20515-1902", + "office": "1222 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "G000592", + "birthday": "1982-07-25", + "cspanid": null, + "firstname": "Jared", + "gender": "male", + "gender_label": "Male", + "lastname": "Golden", + "link": "https://www.govtrack.us/congress/members/jared_golden/412842", + "middlename": "Forrest", + "name": "Rep. Jared Golden [D-ME2]", + "namemod": "", + "nickname": "", + "osid": "N00041668", + "pvsid": "151420", + "sortname": "Golden, Jared (Rep.) [D-ME2]", + "twitterid": "repgolden", + "youtubeid": null + }, + "phone": "202-225-6306", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "ME", + "title": "Rep.", + "title_long": "Representative", + "website": "https://golden.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Pennsylvania's 12th congressional district", + "district": 12, + "enddate": "2023-01-03", + "extra": { + "address": "1717 Longworth House Office Building Washington DC 20515-3812", + "office": "1717 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "K000395", + "birthday": "1965-10-23", + "cspanid": null, + "firstname": "Fred", + "gender": "male", + "gender_label": "Male", + "lastname": "Keller", + "link": "https://www.govtrack.us/congress/members/fred_keller/412843", + "middlename": "", + "name": "Rep. Fred Keller [R-PA12]", + "namemod": "", + "nickname": "", + "osid": "N00044065", + "pvsid": "119553", + "sortname": "Keller, Fred (Rep.) [R-PA12]", + "twitterid": "RepFredKeller", + "youtubeid": null + }, + "phone": "202-225-3731", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "PA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://keller.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for North Carolina's 9th congressional district", + "district": 9, + "enddate": "2023-01-03", + "extra": { + "address": "1207 Longworth House Office Building Washington DC 20515-3309", + "office": "1207 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "B001311", + "birthday": "1964-07-01", + "cspanid": null, + "firstname": "Dan", + "gender": "male", + "gender_label": "Male", + "lastname": "Bishop", + "link": "https://www.govtrack.us/congress/members/dan_bishop/412844", + "middlename": "", + "name": "Rep. Dan Bishop [R-NC9]", + "namemod": "", + "nickname": "", + "osid": "N00044335", + "pvsid": "92423", + "sortname": "Bishop, Dan (Rep.) [R-NC9]", + "twitterid": "RepDanBishop", + "youtubeid": null + }, + "phone": "202-225-1976", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NC", + "title": "Rep.", + "title_long": "Representative", + "website": "https://danbishop.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for North Carolina's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "313 Cannon House Office Building Washington DC 20515-3303", + "office": "313 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "M001210", + "birthday": "1963-03-05", + "cspanid": null, + "firstname": "Gregory", + "gender": "male", + "gender_label": "Male", + "lastname": "Murphy", + "link": "https://www.govtrack.us/congress/members/gregory_murphy/412845", + "middlename": "Francis", + "name": "Rep. Gregory Murphy [R-NC3]", + "namemod": "", + "nickname": "", + "osid": "N00044027", + "pvsid": "166135", + "sortname": "Murphy, Gregory (Rep.) [R-NC3]", + "twitterid": "RepGregMurphy", + "youtubeid": null + }, + "phone": "202-225-3415", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NC", + "title": "Rep.", + "title_long": "Representative", + "website": "https://gregmurphy.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Maryland's 7th congressional district", + "district": 7, + "enddate": "2023-01-03", + "extra": { + "address": "2263 Rayburn House Office Building Washington DC 20515-2007", + "office": "2263 Rayburn House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "M000687", + "birthday": "1948-10-24", + "cspanid": null, + "firstname": "Kweisi", + "gender": "male", + "gender_label": "Male", + "lastname": "Mfume", + "link": "https://www.govtrack.us/congress/members/kweisi_mfume/407672", + "middlename": "", + "name": "Rep. Kweisi Mfume [D-MD7]", + "namemod": "", + "nickname": "", + "osid": "N00001799", + "pvsid": null, + "sortname": "Mfume, Kweisi (Rep.) [D-MD7]", + "twitterid": "RepKweisiMfume", + "youtubeid": null + }, + "phone": "202-225-4741", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MD", + "title": "Rep.", + "title_long": "Representative", + "website": "https://mfume.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Wisconsin's 7th congressional district", + "district": 7, + "enddate": "2023-01-03", + "extra": { + "address": "1719 Longworth House Office Building Washington DC 20515-4907", + "office": "1719 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "T000165", + "birthday": "1957-12-30", + "cspanid": null, + "firstname": "Thomas", + "gender": "male", + "gender_label": "Male", + "lastname": "Tiffany", + "link": "https://www.govtrack.us/congress/members/thomas_tiffany/456791", + "middlename": "P.", + "name": "Rep. Thomas Tiffany [R-WI7]", + "namemod": "", + "nickname": "", + "osid": "N00045307", + "pvsid": null, + "sortname": "Tiffany, Thomas (Rep.) [R-WI7]", + "twitterid": null, + "youtubeid": null + }, + "phone": "202-225-3365", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "WI", + "title": "Rep.", + "title_long": "Representative", + "website": "https://tiffany.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 25th congressional district", + "district": 25, + "enddate": "2023-01-03", + "extra": { + "address": "1535 Longworth House Office Building Washington DC 20515-0525", + "office": "1535 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "G000061", + "birthday": "1976-04-24", + "cspanid": null, + "firstname": "Mike", + "gender": "male", + "gender_label": "Male", + "lastname": "Garcia", + "link": "https://www.govtrack.us/congress/members/mike_garcia/456792", + "middlename": "", + "name": "Rep. Mike Garcia [R-CA25]", + "namemod": "", + "nickname": "", + "osid": "N00044298", + "pvsid": null, + "sortname": "Garcia, Mike (Rep.) [R-CA25]", + "twitterid": "repmikegarcia", + "youtubeid": null + }, + "phone": "202-225-1956", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://mikegarcia.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New York's 27th congressional district", + "district": 27, + "enddate": "2023-01-03", + "extra": { + "address": "214 Cannon House Office Building Washington DC 20515-3227", + "office": "214 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "J000020", + "birthday": "1966-11-28", + "cspanid": null, + "firstname": "Chris", + "gender": "male", + "gender_label": "Male", + "lastname": "Jacobs", + "link": "https://www.govtrack.us/congress/members/chris_jacobs/456793", + "middlename": "", + "name": "Rep. Chris Jacobs [R-NY27]", + "namemod": "", + "nickname": "", + "osid": "N00044575", + "pvsid": null, + "sortname": "Jacobs, Chris (Rep.) [R-NY27]", + "twitterid": null, + "youtubeid": null + }, + "phone": "202-225-5265", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NY", + "title": "Rep.", + "title_long": "Representative", + "website": "https://jacobs.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 50th congressional district", + "district": 50, + "enddate": "2023-01-03", + "extra": { + "address": "2300 Rayburn House Office Building Washington DC 20515-0550", + "office": "2300 Rayburn House Office Building", + "rss_url": "http://issa.house.gov/feed/" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "I000056", + "birthday": "1953-11-01", + "cspanid": 90066, + "firstname": "Darrell", + "gender": "male", + "gender_label": "Male", + "lastname": "Issa", + "link": "https://www.govtrack.us/congress/members/darrell_issa/400196", + "middlename": "E.", + "name": "Rep. Darrell Issa [R-CA50]", + "namemod": "", + "nickname": "", + "osid": "N00007017", + "pvsid": "16553", + "sortname": "Issa, Darrell (Rep.) [R-CA50]", + "twitterid": null, + "youtubeid": null + }, + "phone": "202-225-5672", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://issa.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Texas's 17th congressional district", + "district": 17, + "enddate": "2023-01-03", + "extra": { + "address": "2204 Rayburn House Office Building Washington DC 20515-4317", + "office": "2204 Rayburn House Office Building", + "rss_url": "http://sessions.house.gov/?a=rss.feed" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "S000250", + "birthday": "1955-03-22", + "cspanid": 36807, + "firstname": "Pete", + "gender": "male", + "gender_label": "Male", + "lastname": "Sessions", + "link": "https://www.govtrack.us/congress/members/pete_sessions/400367", + "middlename": "A.", + "name": "Rep. Pete Sessions [R-TX17]", + "namemod": "", + "nickname": "", + "osid": "N00005681", + "pvsid": "288", + "sortname": "Sessions, Pete (Rep.) [R-TX17]", + "twitterid": null, + "youtubeid": null + }, + "phone": "202-225-6105", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TX", + "title": "Rep.", + "title_long": "Representative", + "website": "https://sessions.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 21st congressional district", + "district": 21, + "enddate": "2023-01-03", + "extra": { + "address": "1728 Longworth House Office Building Washington DC 20515-0521", + "office": "1728 Longworth House Office Building", + "rss_url": "http://valadao.house.gov/rss.xml" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "V000129", + "birthday": "1977-04-14", + "cspanid": 623702, + "firstname": "David", + "gender": "male", + "gender_label": "Male", + "lastname": "Valadao", + "link": "https://www.govtrack.us/congress/members/david_valadao/412515", + "middlename": "G.", + "name": "Rep. David Valadao [R-CA21]", + "namemod": "", + "nickname": "", + "osid": "N00033367", + "pvsid": "120200", + "sortname": "Valadao, David (Rep.) [R-CA21]", + "twitterid": null, + "youtubeid": null + }, + "phone": "202-225-4695", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://valadao.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Alabama's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "1330 Longworth House Office Building Washington DC 20515-0101", + "office": "1330 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "C001054", + "birthday": "1958-06-17", + "cspanid": null, + "firstname": "Jerry", + "gender": "male", + "gender_label": "Male", + "lastname": "Carl", + "link": "https://www.govtrack.us/congress/members/jerry_carl/456799", + "middlename": "Lee", + "name": "Rep. Jerry Carl [R-AL1]", + "namemod": "Jr.", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Carl, Jerry (Rep.) [R-AL1]", + "twitterid": "RepJerryCarl", + "youtubeid": null + }, + "phone": "202-225-4931", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "AL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://carl.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Alabama's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "1504 Longworth House Office Building Washington DC 20515-0102", + "office": "1504 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "M001212", + "birthday": "1966-09-26", + "cspanid": null, + "firstname": "Barry", + "gender": "male", + "gender_label": "Male", + "lastname": "Moore", + "link": "https://www.govtrack.us/congress/members/barry_moore/456800", + "middlename": "", + "name": "Rep. Barry Moore [R-AL2]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Moore, Barry (Rep.) [R-AL2]", + "twitterid": "RepBarryMoore", + "youtubeid": null + }, + "phone": "202-225-2901", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "AL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://barrymoore.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 8th congressional district", + "district": 8, + "enddate": "2023-01-03", + "extra": { + "address": "1029 Longworth House Office Building Washington DC 20515-0508", + "office": "1029 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "O000019", + "birthday": "1970-08-18", + "cspanid": null, + "firstname": "Jay", + "gender": "male", + "gender_label": "Male", + "lastname": "Obernolte", + "link": "https://www.govtrack.us/congress/members/jay_obernolte/456801", + "middlename": "Phillip", + "name": "Rep. Jay Obernolte [R-CA8]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Obernolte, Jay (Rep.) [R-CA8]", + "twitterid": "JayObernolte", + "youtubeid": null + }, + "phone": "202-225-5861", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://obernolte.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 39th congressional district", + "district": 39, + "enddate": "2023-01-03", + "extra": { + "address": "1306 Longworth House Office Building Washington DC 20515-0539", + "office": "1306 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "K000397", + "birthday": "1962-10-18", + "cspanid": null, + "firstname": "Young", + "gender": "female", + "gender_label": "Female", + "lastname": "Kim", + "link": "https://www.govtrack.us/congress/members/young_kim/456802", + "middlename": "Oak", + "name": "Rep. Young Kim [R-CA39]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": "151787", + "sortname": "Kim, Young (Rep.) [R-CA39]", + "twitterid": "RepYoungKim", + "youtubeid": null + }, + "phone": "202-225-4111", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://youngkim.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 48th congressional district", + "district": 48, + "enddate": "2023-01-03", + "extra": { + "address": "1113 Longworth House Office Building Washington DC 20515-0548", + "office": "1113 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "S001135", + "birthday": "1955-06-21", + "cspanid": null, + "firstname": "Michelle", + "gender": "female", + "gender_label": "Female", + "lastname": "Steel", + "link": "https://www.govtrack.us/congress/members/michelle_steel/456803", + "middlename": "Eunjoo", + "name": "Rep. Michelle Steel [R-CA48]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Steel, Michelle (Rep.) [R-CA48]", + "twitterid": "RepSteel", + "youtubeid": null + }, + "phone": "202-225-2415", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://steel.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for California's 53rd congressional district", + "district": 53, + "enddate": "2023-01-03", + "extra": { + "address": "1232 Longworth House Office Building Washington DC 20515-0553", + "office": "1232 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "J000305", + "birthday": "1989-02-01", + "cspanid": null, + "firstname": "Sara", + "gender": "female", + "gender_label": "Female", + "lastname": "Jacobs", + "link": "https://www.govtrack.us/congress/members/sara_jacobs/456804", + "middlename": "", + "name": "Rep. Sara Jacobs [D-CA53]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Jacobs, Sara (Rep.) [D-CA53]", + "twitterid": "RepSaraJacobs", + "youtubeid": null + }, + "phone": "202-225-2040", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://sarajacobs.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Colorado's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "1609 Longworth House Office Building Washington DC 20515-0603", + "office": "1609 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "B000825", + "birthday": "1986-12-15", + "cspanid": null, + "firstname": "Lauren", + "gender": "female", + "gender_label": "Female", + "lastname": "Boebert", + "link": "https://www.govtrack.us/congress/members/lauren_boebert/456805", + "middlename": "Opal", + "name": "Rep. Lauren Boebert [R-CO3]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Boebert, Lauren (Rep.) [R-CO3]", + "twitterid": "RepBoebert", + "youtubeid": null + }, + "phone": "202-225-4761", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "CO", + "title": "Rep.", + "title_long": "Representative", + "website": "https://boebert.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Florida's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "1626 Longworth House Office Building Washington DC 20515-0903", + "office": "1626 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "C001039", + "birthday": "1988-02-16", + "cspanid": null, + "firstname": "Katherine", + "gender": "female", + "gender_label": "Female", + "lastname": "Cammack", + "link": "https://www.govtrack.us/congress/members/katherine_cammack/456806", + "middlename": "", + "name": "Rep. Katherine “Kat” Cammack [R-FL3]", + "namemod": "", + "nickname": "Kat", + "osid": null, + "pvsid": null, + "sortname": "Cammack, Katherine “Kat” (Rep.) [R-FL3]", + "twitterid": "RepKatCammack", + "youtubeid": null + }, + "phone": "202-225-5744", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "FL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://cammack.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Florida's 15th congressional district", + "district": 15, + "enddate": "2023-01-03", + "extra": { + "address": "1517 Longworth House Office Building Washington DC 20515-0915", + "office": "1517 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "F000472", + "birthday": "1964-08-23", + "cspanid": null, + "firstname": "C.", + "gender": "male", + "gender_label": "Male", + "lastname": "Franklin", + "link": "https://www.govtrack.us/congress/members/scott_franklin/456807", + "middlename": "Scott", + "name": "Rep. Scott Franklin [R-FL15]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Franklin, Scott (Rep.) [R-FL15]", + "twitterid": "RepFranklin", + "youtubeid": null + }, + "phone": "202-225-1252", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "FL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://franklin.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Florida's 19th congressional district", + "district": 19, + "enddate": "2023-01-03", + "extra": { + "address": "523 Cannon House Office Building Washington DC 20515-0919", + "office": "523 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "D000032", + "birthday": "1978-10-28", + "cspanid": null, + "firstname": "Byron", + "gender": "male", + "gender_label": "Male", + "lastname": "Donalds", + "link": "https://www.govtrack.us/congress/members/byron_donalds/456808", + "middlename": "Lowell", + "name": "Rep. Byron Donalds [R-FL19]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Donalds, Byron (Rep.) [R-FL19]", + "twitterid": null, + "youtubeid": null + }, + "phone": "202-225-2536", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "FL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://donalds.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Florida's 26th congressional district", + "district": 26, + "enddate": "2023-01-03", + "extra": { + "address": "419 Cannon House Office Building Washington DC 20515-0926", + "office": "419 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "G000593", + "birthday": "1954-01-17", + "cspanid": null, + "firstname": "Carlos", + "gender": "male", + "gender_label": "Male", + "lastname": "Gimenez", + "link": "https://www.govtrack.us/congress/members/carlos_gimenez/456809", + "middlename": "A.", + "name": "Rep. Carlos Gimenez [R-FL26]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": "81366", + "sortname": "Gimenez, Carlos (Rep.) [R-FL26]", + "twitterid": "RepCarlos", + "youtubeid": null + }, + "phone": "202-225-2778", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "FL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://gimenez.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Florida's 27th congressional district", + "district": 27, + "enddate": "2023-01-03", + "extra": { + "address": "1616 Longworth House Office Building Washington DC 20515-0927", + "office": "1616 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "S000168", + "birthday": "1961-11-01", + "cspanid": null, + "firstname": "Maria", + "gender": "male", + "gender_label": "Male", + "lastname": "Salazar", + "link": "https://www.govtrack.us/congress/members/maria_salazar/456810", + "middlename": "Elvira", + "name": "Rep. Maria Salazar [R-FL27]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": "182300", + "sortname": "Salazar, Maria (Rep.) [R-FL27]", + "twitterid": "RepMariaSalazar", + "youtubeid": null + }, + "phone": "202-225-3931", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "FL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://salazar.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Georgia's 5th congressional district", + "district": 5, + "enddate": "2023-01-03", + "extra": { + "address": "1406 Longworth House Office Building Washington DC 20515-1005", + "office": "1406 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "W000788", + "birthday": "1978-07-30", + "cspanid": null, + "firstname": "Nikema", + "gender": "female", + "gender_label": "Female", + "lastname": "Williams", + "link": "https://www.govtrack.us/congress/members/nikema_williams/456811", + "middlename": "Natassha", + "name": "Rep. Nikema Williams [D-GA5]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Williams, Nikema (Rep.) [D-GA5]", + "twitterid": "RepNikema", + "youtubeid": null + }, + "phone": "202-225-3801", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "GA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://nikemawilliams.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Georgia's 7th congressional district", + "district": 7, + "enddate": "2023-01-03", + "extra": { + "address": "1319 Longworth House Office Building Washington DC 20515-1007", + "office": "1319 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "B001312", + "birthday": "1970-06-03", + "cspanid": null, + "firstname": "Carolyn", + "gender": "female", + "gender_label": "Female", + "lastname": "Bourdeaux", + "link": "https://www.govtrack.us/congress/members/carolyn_bourdeaux/456812", + "middlename": "", + "name": "Rep. Carolyn Bourdeaux [D-GA7]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": "178540", + "sortname": "Bourdeaux, Carolyn (Rep.) [D-GA7]", + "twitterid": "RepBourdeaux", + "youtubeid": null + }, + "phone": "202-225-4272", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "GA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://bourdeaux.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Georgia's 9th congressional district", + "district": 9, + "enddate": "2023-01-03", + "extra": { + "address": "521 Cannon House Office Building Washington DC 20515-1009", + "office": "521 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "C001116", + "birthday": "1963-11-22", + "cspanid": null, + "firstname": "Andrew", + "gender": "male", + "gender_label": "Male", + "lastname": "Clyde", + "link": "https://www.govtrack.us/congress/members/andrew_clyde/456813", + "middlename": "S.", + "name": "Rep. Andrew Clyde [R-GA9]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Clyde, Andrew (Rep.) [R-GA9]", + "twitterid": null, + "youtubeid": null + }, + "phone": "202-225-9893", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "GA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://clyde.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Georgia's 14th congressional district", + "district": 14, + "enddate": "2023-01-03", + "extra": { + "address": "1023 Longworth House Office Building Washington DC 20515-1014", + "office": "1023 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "G000596", + "birthday": "1974-05-27", + "cspanid": null, + "firstname": "Marjorie", + "gender": "female", + "gender_label": "Female", + "lastname": "Greene", + "link": "https://www.govtrack.us/congress/members/marjorie_greene/456814", + "middlename": "Taylor", + "name": "Rep. Marjorie Greene [R-GA14]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Greene, Marjorie (Rep.) [R-GA14]", + "twitterid": "RepMTG", + "youtubeid": null + }, + "phone": "202-225-5211", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "GA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://greene.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Hawaii's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "1205 Longworth House Office Building Washington DC 20515-1102", + "office": "1205 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "K000396", + "birthday": "1974-03-28", + "cspanid": null, + "firstname": "Kaialiʻi", + "gender": "male", + "gender_label": "Male", + "lastname": "Kahele", + "link": "https://www.govtrack.us/congress/members/kaialii_kahele/456815", + "middlename": "", + "name": "Rep. Kaialiʻi Kahele [D-HI2]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Kahele, Kaialiʻi (Rep.) [D-HI2]", + "twitterid": "RepKahele", + "youtubeid": null + }, + "phone": "202-225-4906", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "HI", + "title": "Rep.", + "title_long": "Representative", + "website": "https://kahele.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Iowa's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "1429 Longworth House Office Building Washington DC 20515-1501", + "office": "1429 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "H001091", + "birthday": "1983-06-27", + "cspanid": null, + "firstname": "Ashley", + "gender": "female", + "gender_label": "Female", + "lastname": "Hinson", + "link": "https://www.govtrack.us/congress/members/ashley_hinson/456816", + "middlename": "", + "name": "Rep. Ashley Hinson [R-IA1]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": "168783", + "sortname": "Hinson, Ashley (Rep.) [R-IA1]", + "twitterid": "RepAshleyHinson", + "youtubeid": null + }, + "phone": "202-225-2911", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "IA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://hinson.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Iowa's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "1716 Longworth House Office Building Washington DC 20515-1502", + "office": "1716 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "M001215", + "birthday": "1955-09-06", + "cspanid": null, + "firstname": "Mariannette", + "gender": "female", + "gender_label": "Female", + "lastname": "Miller-Meeks", + "link": "https://www.govtrack.us/congress/members/mariannette_miller_meeks/456817", + "middlename": "Jane", + "name": "Rep. Mariannette Miller-Meeks [R-IA2]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": "103294", + "sortname": "Miller-Meeks, Mariannette (Rep.) [R-IA2]", + "twitterid": "RepMMM", + "youtubeid": null + }, + "phone": "202-225-6576", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "IA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://millermeeks.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Iowa's 4th congressional district", + "district": 4, + "enddate": "2023-01-03", + "extra": { + "address": "1440 Longworth House Office Building Washington DC 20515-1504", + "office": "1440 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "F000446", + "birthday": "1969-01-14", + "cspanid": null, + "firstname": "Randy", + "gender": "male", + "gender_label": "Male", + "lastname": "Feenstra", + "link": "https://www.govtrack.us/congress/members/randy_feenstra/456818", + "middlename": "L.", + "name": "Rep. Randy Feenstra [R-IA4]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": "103301", + "sortname": "Feenstra, Randy (Rep.) [R-IA4]", + "twitterid": "RepFeenstra", + "youtubeid": null + }, + "phone": "202-225-4426", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "IA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://feenstra.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Illinois's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "1022 Longworth House Office Building Washington DC 20515-1303", + "office": "1022 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "N000192", + "birthday": "1964-04-13", + "cspanid": null, + "firstname": "Marie", + "gender": "female", + "gender_label": "Female", + "lastname": "Newman", + "link": "https://www.govtrack.us/congress/members/marie_newman/456819", + "middlename": "", + "name": "Rep. Marie Newman [D-IL3]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Newman, Marie (Rep.) [D-IL3]", + "twitterid": "RepMarieNewman", + "youtubeid": null + }, + "phone": "202-225-5701", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "IL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://newman.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Illinois's 15th congressional district", + "district": 15, + "enddate": "2023-01-03", + "extra": { + "address": "1529 Longworth House Office Building Washington DC 20515-1315", + "office": "1529 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "M001211", + "birthday": "1959-08-27", + "cspanid": null, + "firstname": "Mary", + "gender": "female", + "gender_label": "Female", + "lastname": "Miller", + "link": "https://www.govtrack.us/congress/members/mary_miller/456820", + "middlename": "E.", + "name": "Rep. Mary Miller [R-IL15]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Miller, Mary (Rep.) [R-IL15]", + "twitterid": "RepMaryMiller", + "youtubeid": null + }, + "phone": "202-225-5271", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "IL", + "title": "Rep.", + "title_long": "Representative", + "website": "https://marymiller.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Indiana's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "1607 Longworth House Office Building Washington DC 20515-1401", + "office": "1607 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "M001214", + "birthday": "1969-04-16", + "cspanid": null, + "firstname": "Frank", + "gender": "male", + "gender_label": "Male", + "lastname": "Mrvan", + "link": "https://www.govtrack.us/congress/members/frank_mrvan/456821", + "middlename": "John", + "name": "Rep. Frank Mrvan [D-IN1]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Mrvan, Frank (Rep.) [D-IN1]", + "twitterid": "RepMrvan", + "youtubeid": null + }, + "phone": "202-225-2461", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "IN", + "title": "Rep.", + "title_long": "Representative", + "website": "https://mrvan.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Indiana's 5th congressional district", + "district": 5, + "enddate": "2023-01-03", + "extra": { + "address": "1523 Longworth House Office Building Washington DC 20515-1405", + "office": "1523 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "S000929", + "birthday": "1978-10-06", + "cspanid": null, + "firstname": "Victoria", + "gender": "female", + "gender_label": "Female", + "lastname": "Spartz", + "link": "https://www.govtrack.us/congress/members/victoria_spartz/456822", + "middlename": "", + "name": "Rep. Victoria Spartz [R-IN5]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Spartz, Victoria (Rep.) [R-IN5]", + "twitterid": "RepSpartz", + "youtubeid": null + }, + "phone": "202-225-2276", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "IN", + "title": "Rep.", + "title_long": "Representative", + "website": "https://spartz.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Kansas's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "522 Cannon House Office Building Washington DC 20515-1601", + "office": "522 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "M000871", + "birthday": "1976-12-17", + "cspanid": null, + "firstname": "Tracey", + "gender": "male", + "gender_label": "Male", + "lastname": "Mann", + "link": "https://www.govtrack.us/congress/members/tracey_mann/456823", + "middlename": "Robert", + "name": "Rep. Tracey Mann [R-KS1]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Mann, Tracey (Rep.) [R-KS1]", + "twitterid": "RepMann", + "youtubeid": null + }, + "phone": "202-225-2715", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "KS", + "title": "Rep.", + "title_long": "Representative", + "website": "https://mann.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Kansas's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "1630 Longworth House Office Building Washington DC 20515-1602", + "office": "1630 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "L000266", + "birthday": "1988-02-17", + "cspanid": null, + "firstname": "Jacob", + "gender": "male", + "gender_label": "Male", + "lastname": "LaTurner", + "link": "https://www.govtrack.us/congress/members/jacob_laturner/456824", + "middlename": "", + "name": "Rep. Jacob “Jake” LaTurner [R-KS2]", + "namemod": "", + "nickname": "Jake", + "osid": null, + "pvsid": null, + "sortname": "LaTurner, Jacob “Jake” (Rep.) [R-KS2]", + "twitterid": "RepLaTurner", + "youtubeid": null + }, + "phone": "202-225-6601", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "KS", + "title": "Rep.", + "title_long": "Representative", + "website": "https://laturner.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Massachusetts's 4th congressional district", + "district": 4, + "enddate": "2023-01-03", + "extra": { + "address": "1524 Longworth House Office Building Washington DC 20515-2104", + "office": "1524 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "A000148", + "birthday": "1988-01-29", + "cspanid": null, + "firstname": "Jake", + "gender": "male", + "gender_label": "Male", + "lastname": "Auchincloss", + "link": "https://www.govtrack.us/congress/members/jake_auchincloss/456825", + "middlename": "Daniel", + "name": "Rep. Jake Auchincloss [D-MA4]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Auchincloss, Jake (Rep.) [D-MA4]", + "twitterid": "RepAuchincloss", + "youtubeid": null + }, + "phone": "202-225-5931", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://auchincloss.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Michigan's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "1508 Longworth House Office Building Washington DC 20515-2203", + "office": "1508 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "M001186", + "birthday": "1988-01-10", + "cspanid": null, + "firstname": "Peter", + "gender": "male", + "gender_label": "Male", + "lastname": "Meijer", + "link": "https://www.govtrack.us/congress/members/peter_meijer/456826", + "middlename": "James", + "name": "Rep. Peter Meijer [R-MI3]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Meijer, Peter (Rep.) [R-MI3]", + "twitterid": "RepMeijer", + "youtubeid": null + }, + "phone": "202-225-3831", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MI", + "title": "Rep.", + "title_long": "Representative", + "website": "https://meijer.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Michigan's 10th congressional district", + "district": 10, + "enddate": "2023-01-03", + "extra": { + "address": "218 Cannon House Office Building Washington DC 20515-2210", + "office": "218 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "M001136", + "birthday": "1966-04-07", + "cspanid": null, + "firstname": "Lisa", + "gender": "female", + "gender_label": "Female", + "lastname": "McClain", + "link": "https://www.govtrack.us/congress/members/lisa_mcclain/456827", + "middlename": "C.", + "name": "Rep. Lisa McClain [R-MI10]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "McClain, Lisa (Rep.) [R-MI10]", + "twitterid": "RepLisaMcClain", + "youtubeid": null + }, + "phone": "202-225-2106", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MI", + "title": "Rep.", + "title_long": "Representative", + "website": "https://mcclain.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Minnesota's 7th congressional district", + "district": 7, + "enddate": "2023-01-03", + "extra": { + "address": "1237 Longworth House Office Building Washington DC 20515-2307", + "office": "1237 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "F000470", + "birthday": "1965-11-03", + "cspanid": null, + "firstname": "Michelle", + "gender": "female", + "gender_label": "Female", + "lastname": "Fischbach", + "link": "https://www.govtrack.us/congress/members/michelle_fischbach/456828", + "middlename": "Louise Helene", + "name": "Rep. Michelle Fischbach [R-MN7]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Fischbach, Michelle (Rep.) [R-MN7]", + "twitterid": "RepFischbach", + "youtubeid": null + }, + "phone": "202-225-2165", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MN", + "title": "Rep.", + "title_long": "Representative", + "website": "https://fischbach.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Missouri's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "563 Cannon House Office Building Washington DC 20515-2501", + "office": "563 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "B001224", + "birthday": "1976-07-21", + "cspanid": null, + "firstname": "Cori", + "gender": "female", + "gender_label": "Female", + "lastname": "Bush", + "link": "https://www.govtrack.us/congress/members/cori_bush/456829", + "middlename": "", + "name": "Rep. Cori Bush [D-MO1]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Bush, Cori (Rep.) [D-MO1]", + "twitterid": "RepCori", + "youtubeid": null + }, + "phone": "202-225-2406", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MO", + "title": "Rep.", + "title_long": "Representative", + "website": "https://bush.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Montana At Large", + "district": 0, + "enddate": "2023-01-03", + "extra": { + "address": "1037 Longworth House Office Building Washington DC 20515-2600", + "office": "1037 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "R000103", + "birthday": "1960-07-07", + "cspanid": null, + "firstname": "Matthew", + "gender": "male", + "gender_label": "Male", + "lastname": "Rosendale", + "link": "https://www.govtrack.us/congress/members/matthew_rosendale/456830", + "middlename": "Martin", + "name": "Rep. Matthew Rosendale [R-MT0]", + "namemod": "Sr.", + "nickname": "", + "osid": null, + "pvsid": "120815", + "sortname": "Rosendale, Matthew (Rep.) [R-MT0]", + "twitterid": "RepRosendale", + "youtubeid": null + }, + "phone": "202-225-3211", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "MT", + "title": "Rep.", + "title_long": "Representative", + "website": "https://rosendale.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for North Carolina's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "1208 Longworth House Office Building Washington DC 20515-3302", + "office": "1208 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "R000305", + "birthday": "1963-06-20", + "cspanid": null, + "firstname": "Deborah", + "gender": "female", + "gender_label": "Female", + "lastname": "Ross", + "link": "https://www.govtrack.us/congress/members/deborah_ross/456831", + "middlename": "Koff", + "name": "Rep. Deborah Ross [D-NC2]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Ross, Deborah (Rep.) [D-NC2]", + "twitterid": "RepDeborahRoss", + "youtubeid": null + }, + "phone": "202-225-3032", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NC", + "title": "Rep.", + "title_long": "Representative", + "website": "https://ross.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for North Carolina's 6th congressional district", + "district": 6, + "enddate": "2023-01-03", + "extra": { + "address": "415 Cannon House Office Building Washington DC 20515-3306", + "office": "415 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "M001135", + "birthday": "1956-12-03", + "cspanid": null, + "firstname": "Kathy", + "gender": "female", + "gender_label": "Female", + "lastname": "Manning", + "link": "https://www.govtrack.us/congress/members/kathy_manning/456832", + "middlename": "Ellen", + "name": "Rep. Kathy Manning [D-NC6]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Manning, Kathy (Rep.) [D-NC6]", + "twitterid": "RepKManning", + "youtubeid": null + }, + "phone": "202-225-3065", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NC", + "title": "Rep.", + "title_long": "Representative", + "website": "https://manning.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for North Carolina's 11th congressional district", + "district": 11, + "enddate": "2023-01-03", + "extra": { + "address": "102 Cannon House Office Building Washington DC 20515-3311", + "office": "102 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "C001104", + "birthday": "1995-08-01", + "cspanid": null, + "firstname": "David", + "gender": "male", + "gender_label": "Male", + "lastname": "Cawthorn", + "link": "https://www.govtrack.us/congress/members/david_cawthorn/456833", + "middlename": "", + "name": "Rep. David “Madison” Cawthorn [R-NC11]", + "namemod": "", + "nickname": "Madison", + "osid": null, + "pvsid": null, + "sortname": "Cawthorn, David “Madison” (Rep.) [R-NC11]", + "twitterid": "RepCawthorn", + "youtubeid": null + }, + "phone": "202-225-6401", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NC", + "title": "Rep.", + "title_long": "Representative", + "website": "https://cawthorn.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New Mexico's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "1305 Longworth House Office Building Washington DC 20515-3102", + "office": "1305 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "H001084", + "birthday": "1964-03-16", + "cspanid": null, + "firstname": "Yvette", + "gender": "female", + "gender_label": "Female", + "lastname": "Herrell", + "link": "https://www.govtrack.us/congress/members/yvette_herrell/456834", + "middlename": "", + "name": "Rep. Yvette Herrell [R-NM2]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": "121681", + "sortname": "Herrell, Yvette (Rep.) [R-NM2]", + "twitterid": "RepHerrell", + "youtubeid": null + }, + "phone": "202-225-2365", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NM", + "title": "Rep.", + "title_long": "Representative", + "website": "https://herrell.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New Mexico's 3rd congressional district", + "district": 3, + "enddate": "2023-01-03", + "extra": { + "address": "1432 Longworth House Office Building Washington DC 20515-3103", + "office": "1432 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "L000273", + "birthday": "1959-07-01", + "cspanid": null, + "firstname": "Teresa", + "gender": "female", + "gender_label": "Female", + "lastname": "Leger Fernandez", + "link": "https://www.govtrack.us/congress/members/teresa_leger_fernandez/456835", + "middlename": "", + "name": "Rep. Teresa Leger Fernandez [D-NM3]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Leger Fernandez, Teresa (Rep.) [D-NM3]", + "twitterid": "RepTeresaLF", + "youtubeid": null + }, + "phone": "202-225-6190", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NM", + "title": "Rep.", + "title_long": "Representative", + "website": "https://fernandez.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New York's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "1516 Longworth House Office Building Washington DC 20515-3202", + "office": "1516 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "G000597", + "birthday": "1984-09-27", + "cspanid": null, + "firstname": "Andrew", + "gender": "male", + "gender_label": "Male", + "lastname": "Garbarino", + "link": "https://www.govtrack.us/congress/members/andrew_garbarino/456836", + "middlename": "R.", + "name": "Rep. Andrew Garbarino [R-NY2]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Garbarino, Andrew (Rep.) [R-NY2]", + "twitterid": "RepGarbarino", + "youtubeid": null + }, + "phone": "202-225-7896", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NY", + "title": "Rep.", + "title_long": "Representative", + "website": "https://garbarino.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New York's 11th congressional district", + "district": 11, + "enddate": "2023-01-03", + "extra": { + "address": "417 Cannon House Office Building Washington DC 20515-3211", + "office": "417 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "M000317", + "birthday": "1980-11-11", + "cspanid": null, + "firstname": "Nicole", + "gender": "female", + "gender_label": "Female", + "lastname": "Malliotakis", + "link": "https://www.govtrack.us/congress/members/nicole_malliotakis/456837", + "middlename": "", + "name": "Rep. Nicole Malliotakis [R-NY11]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Malliotakis, Nicole (Rep.) [R-NY11]", + "twitterid": "RepMalliotakis", + "youtubeid": null + }, + "phone": "202-225-3371", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NY", + "title": "Rep.", + "title_long": "Representative", + "website": "https://malliotakis.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New York's 15th congressional district", + "district": 15, + "enddate": "2023-01-03", + "extra": { + "address": "317 Cannon House Office Building Washington DC 20515-3215", + "office": "317 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "T000486", + "birthday": "1988-03-12", + "cspanid": null, + "firstname": "Ritchie", + "gender": "male", + "gender_label": "Male", + "lastname": "Torres", + "link": "https://www.govtrack.us/congress/members/ritchie_torres/456838", + "middlename": "John", + "name": "Rep. Ritchie Torres [D-NY15]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Torres, Ritchie (Rep.) [D-NY15]", + "twitterid": "RepRitchie", + "youtubeid": null + }, + "phone": "202-225-4361", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NY", + "title": "Rep.", + "title_long": "Representative", + "website": "https://ritchietorres.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New York's 16th congressional district", + "district": 16, + "enddate": "2023-01-03", + "extra": { + "address": "1605 Longworth House Office Building Washington DC 20515-3216", + "office": "1605 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "B001223", + "birthday": "1976-04-01", + "cspanid": null, + "firstname": "Jamaal", + "gender": "male", + "gender_label": "Male", + "lastname": "Bowman", + "link": "https://www.govtrack.us/congress/members/jamaal_bowman/456839", + "middlename": "", + "name": "Rep. Jamaal Bowman [D-NY16]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Bowman, Jamaal (Rep.) [D-NY16]", + "twitterid": "RepBowman", + "youtubeid": null + }, + "phone": "202-225-2464", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NY", + "title": "Rep.", + "title_long": "Representative", + "website": "https://bowman.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New York's 17th congressional district", + "district": 17, + "enddate": "2023-01-03", + "extra": { + "address": "1017 Longworth House Office Building Washington DC 20515-3217", + "office": "1017 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "J000306", + "birthday": "1987-05-18", + "cspanid": null, + "firstname": "Mondaire", + "gender": "male", + "gender_label": "Male", + "lastname": "Jones", + "link": "https://www.govtrack.us/congress/members/mondaire_jones/456840", + "middlename": "", + "name": "Rep. Mondaire Jones [D-NY17]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Jones, Mondaire (Rep.) [D-NY17]", + "twitterid": "RepMondaire", + "youtubeid": null + }, + "phone": "202-225-6506", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "NY", + "title": "Rep.", + "title_long": "Representative", + "website": "https://jones.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Oklahoma's 5th congressional district", + "district": 5, + "enddate": "2023-01-03", + "extra": { + "address": "1223 Longworth House Office Building Washington DC 20515-3605", + "office": "1223 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "B000740", + "birthday": "1973-11-11", + "cspanid": null, + "firstname": "Stephanie", + "gender": "female", + "gender_label": "Female", + "lastname": "Bice", + "link": "https://www.govtrack.us/congress/members/stephanie_bice/456841", + "middlename": "I.", + "name": "Rep. Stephanie Bice [R-OK5]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Bice, Stephanie (Rep.) [R-OK5]", + "twitterid": "RepBice", + "youtubeid": null + }, + "phone": "202-225-2132", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "OK", + "title": "Rep.", + "title_long": "Representative", + "website": "https://bice.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Oregon's 2nd congressional district", + "district": 2, + "enddate": "2023-01-03", + "extra": { + "address": "1239 Longworth House Office Building Washington DC 20515-3702", + "office": "1239 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "B000668", + "birthday": "1952-01-12", + "cspanid": null, + "firstname": "Cliff", + "gender": "male", + "gender_label": "Male", + "lastname": "Bentz", + "link": "https://www.govtrack.us/congress/members/cliff_bentz/456842", + "middlename": "Stewart", + "name": "Rep. Cliff Bentz [R-OR2]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Bentz, Cliff (Rep.) [R-OR2]", + "twitterid": "RepBentz", + "youtubeid": null + }, + "phone": "202-225-6730", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "OR", + "title": "Rep.", + "title_long": "Representative", + "website": "https://bentz.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for South Carolina's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "212 Cannon House Office Building Washington DC 20515-4001", + "office": "212 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "M000194", + "birthday": "1977-12-04", + "cspanid": null, + "firstname": "Nancy", + "gender": "female", + "gender_label": "Female", + "lastname": "Mace", + "link": "https://www.govtrack.us/congress/members/nancy_mace/456843", + "middlename": "Ruth", + "name": "Rep. Nancy Mace [R-SC1]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Mace, Nancy (Rep.) [R-SC1]", + "twitterid": "RepNancyMace", + "youtubeid": null + }, + "phone": "202-225-3176", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "SC", + "title": "Rep.", + "title_long": "Representative", + "website": "https://mace.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Tennessee's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "167 Cannon House Office Building Washington DC 20515-4201", + "office": "167 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "H001086", + "birthday": "1960-01-01", + "cspanid": null, + "firstname": "Diana", + "gender": "female", + "gender_label": "Female", + "lastname": "Harshbarger", + "link": "https://www.govtrack.us/congress/members/diana_harshbarger/456844", + "middlename": "", + "name": "Rep. Diana Harshbarger [R-TN1]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Harshbarger, Diana (Rep.) [R-TN1]", + "twitterid": "RepHarshbarger", + "youtubeid": null + }, + "phone": "202-225-6356", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TN", + "title": "Rep.", + "title_long": "Representative", + "website": "https://harshbarger.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Texas's 4th congressional district", + "district": 4, + "enddate": "2023-01-03", + "extra": { + "address": "1118 Longworth House Office Building Washington DC 20515-4304", + "office": "1118 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "F000246", + "birthday": "1967-12-19", + "cspanid": null, + "firstname": "Patrick", + "gender": "male", + "gender_label": "Male", + "lastname": "Fallon", + "link": "https://www.govtrack.us/congress/members/patrick_fallon/456845", + "middlename": "Edward", + "name": "Rep. Patrick “Pat” Fallon [R-TX4]", + "namemod": "", + "nickname": "Pat", + "osid": null, + "pvsid": null, + "sortname": "Fallon, Patrick “Pat” (Rep.) [R-TX4]", + "twitterid": "RepPatFallon", + "youtubeid": null + }, + "phone": "202-225-6673", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TX", + "title": "Rep.", + "title_long": "Representative", + "website": "https://fallon.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Texas's 11th congressional district", + "district": 11, + "enddate": "2023-01-03", + "extra": { + "address": "1531 Longworth House Office Building Washington DC 20515-4311", + "office": "1531 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "P000048", + "birthday": "1978-12-28", + "cspanid": null, + "firstname": "August", + "gender": "male", + "gender_label": "Male", + "lastname": "Pfluger", + "link": "https://www.govtrack.us/congress/members/august_pfluger/456846", + "middlename": "Lee", + "name": "Rep. August Pfluger [R-TX11]", + "namemod": "II", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Pfluger, August (Rep.) [R-TX11]", + "twitterid": "RepPfluger", + "youtubeid": null + }, + "phone": "202-225-3605", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TX", + "title": "Rep.", + "title_long": "Representative", + "website": "https://pfluger.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Texas's 13th congressional district", + "district": 13, + "enddate": "2023-01-03", + "extra": { + "address": "118 Cannon House Office Building Washington DC 20515-4313", + "office": "118 Cannon House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "J000304", + "birthday": "1967-05-04", + "cspanid": null, + "firstname": "Ronny", + "gender": "male", + "gender_label": "Male", + "lastname": "Jackson", + "link": "https://www.govtrack.us/congress/members/ronny_jackson/456847", + "middlename": "Lynn", + "name": "Rep. Ronny Jackson [R-TX13]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Jackson, Ronny (Rep.) [R-TX13]", + "twitterid": "RepRonnyJackson", + "youtubeid": null + }, + "phone": "202-225-3706", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TX", + "title": "Rep.", + "title_long": "Representative", + "website": "https://jackson.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Texas's 22nd congressional district", + "district": 22, + "enddate": "2023-01-03", + "extra": { + "address": "1104 Longworth House Office Building Washington DC 20515-4322", + "office": "1104 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "N000026", + "birthday": "1968-04-07", + "cspanid": null, + "firstname": "Troy", + "gender": "male", + "gender_label": "Male", + "lastname": "Nehls", + "link": "https://www.govtrack.us/congress/members/troy_nehls/456848", + "middlename": "E.", + "name": "Rep. Troy Nehls [R-TX22]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": "188334", + "sortname": "Nehls, Troy (Rep.) [R-TX22]", + "twitterid": "RepTroyNehls", + "youtubeid": null + }, + "phone": "202-225-5951", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TX", + "title": "Rep.", + "title_long": "Representative", + "website": "https://nehls.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Texas's 23rd congressional district", + "district": 23, + "enddate": "2023-01-03", + "extra": { + "address": "1009 Longworth House Office Building Washington DC 20515-4323", + "office": "1009 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "G000594", + "birthday": "1980-10-10", + "cspanid": null, + "firstname": "Ernest", + "gender": "male", + "gender_label": "Male", + "lastname": "Gonzales", + "link": "https://www.govtrack.us/congress/members/ernest_gonzales/456849", + "middlename": "Anthony", + "name": "Rep. Ernest “Tony” Gonzales [R-TX23]", + "namemod": "", + "nickname": "Tony", + "osid": null, + "pvsid": null, + "sortname": "Gonzales, Ernest “Tony” (Rep.) [R-TX23]", + "twitterid": "RepTonyGonzales", + "youtubeid": null + }, + "phone": "202-225-4511", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TX", + "title": "Rep.", + "title_long": "Representative", + "website": "https://gonzales.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Texas's 24th congressional district", + "district": 24, + "enddate": "2023-01-03", + "extra": { + "address": "1337 Longworth House Office Building Washington DC 20515-4324", + "office": "1337 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "V000134", + "birthday": "1970-11-16", + "cspanid": null, + "firstname": "Beth", + "gender": "female", + "gender_label": "Female", + "lastname": "Van Duyne", + "link": "https://www.govtrack.us/congress/members/beth_van_duyne/456850", + "middlename": "Ann", + "name": "Rep. Beth Van Duyne [R-TX24]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": "79150", + "sortname": "Van Duyne, Beth (Rep.) [R-TX24]", + "twitterid": "RepBethVanDuyne", + "youtubeid": null + }, + "phone": "202-225-6605", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "TX", + "title": "Rep.", + "title_long": "Representative", + "website": "https://vanduyne.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Utah's 1st congressional district", + "district": 1, + "enddate": "2023-01-03", + "extra": { + "address": "1320 Longworth House Office Building Washington DC 20515-4401", + "office": "1320 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "M001213", + "birthday": "1980-06-22", + "cspanid": null, + "firstname": "Blake", + "gender": "male", + "gender_label": "Male", + "lastname": "Moore", + "link": "https://www.govtrack.us/congress/members/blake_moore/456851", + "middlename": "David", + "name": "Rep. Blake Moore [R-UT1]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Moore, Blake (Rep.) [R-UT1]", + "twitterid": "RepBlakeMoore", + "youtubeid": null + }, + "phone": "202-225-0453", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "UT", + "title": "Rep.", + "title_long": "Representative", + "website": "https://blakemoore.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Utah's 4th congressional district", + "district": 4, + "enddate": "2023-01-03", + "extra": { + "address": "1039 Longworth House Office Building Washington DC 20515-4404", + "office": "1039 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "O000086", + "birthday": "1951-08-02", + "cspanid": null, + "firstname": "Clarence", + "gender": "male", + "gender_label": "Male", + "lastname": "Owens", + "link": "https://www.govtrack.us/congress/members/clarence_owens/456852", + "middlename": "", + "name": "Rep. Clarence “Burgess” Owens [R-UT4]", + "namemod": "", + "nickname": "Burgess", + "osid": null, + "pvsid": null, + "sortname": "Owens, Clarence “Burgess” (Rep.) [R-UT4]", + "twitterid": "RepBurgessOwens", + "youtubeid": null + }, + "phone": "202-225-3011", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "UT", + "title": "Rep.", + "title_long": "Representative", + "website": "https://owens.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Virginia's 5th congressional district", + "district": 5, + "enddate": "2023-01-03", + "extra": { + "address": "1213 Longworth House Office Building Washington DC 20515-4605", + "office": "1213 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "G000595", + "birthday": "1965-09-11", + "cspanid": null, + "firstname": "Robert", + "gender": "male", + "gender_label": "Male", + "lastname": "Good", + "link": "https://www.govtrack.us/congress/members/robert_good/456853", + "middlename": "G.", + "name": "Rep. Robert “Bob” Good [R-VA5]", + "namemod": "", + "nickname": "Bob", + "osid": null, + "pvsid": null, + "sortname": "Good, Robert “Bob” (Rep.) [R-VA5]", + "twitterid": "RepBobGood", + "youtubeid": null + }, + "phone": "202-225-4711", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "VA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://good.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Washington's 10th congressional district", + "district": 10, + "enddate": "2023-01-03", + "extra": { + "address": "1004 Longworth House Office Building Washington DC 20515-4710", + "office": "1004 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Democrat", + "person": { + "bioguideid": "S001159", + "birthday": "1962-09-25", + "cspanid": null, + "firstname": "Marilyn", + "gender": "female", + "gender_label": "Female", + "lastname": "Strickland", + "link": "https://www.govtrack.us/congress/members/marilyn_strickland/456854", + "middlename": "", + "name": "Rep. Marilyn Strickland [D-WA10]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Strickland, Marilyn (Rep.) [D-WA10]", + "twitterid": "RepStricklandWA", + "youtubeid": null + }, + "phone": "202-225-9740", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "WA", + "title": "Rep.", + "title_long": "Representative", + "website": "https://strickland.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Wisconsin's 5th congressional district", + "district": 5, + "enddate": "2023-01-03", + "extra": { + "address": "1507 Longworth House Office Building Washington DC 20515-4905", + "office": "1507 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "F000471", + "birthday": "1963-11-16", + "cspanid": null, + "firstname": "Scott", + "gender": "male", + "gender_label": "Male", + "lastname": "Fitzgerald", + "link": "https://www.govtrack.us/congress/members/scott_fitzgerald/456855", + "middlename": "L.", + "name": "Rep. Scott Fitzgerald [R-WI5]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": "3446", + "sortname": "Fitzgerald, Scott (Rep.) [R-WI5]", + "twitterid": "RepFitzgerald", + "youtubeid": null + }, + "phone": "202-225-5101", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-01-03", + "state": "WI", + "title": "Rep.", + "title_long": "Representative", + "website": "https://fitzgerald.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for New York's 22nd congressional district", + "district": 22, + "enddate": "2023-01-03", + "extra": { + "address": "1410 Longworth House Office Building Washington DC 20515-3222", + "office": "1410 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "T000478", + "birthday": "1961-02-04", + "cspanid": 103481, + "firstname": "Claudia", + "gender": "female", + "gender_label": "Female", + "lastname": "Tenney", + "link": "https://www.govtrack.us/congress/members/claudia_tenney/412720", + "middlename": "", + "name": "Rep. Claudia Tenney [R-NY22]", + "namemod": "", + "nickname": "", + "osid": "N00036351", + "pvsid": "127668", + "sortname": "Tenney, Claudia (Rep.) [R-NY22]", + "twitterid": "RepTenney", + "youtubeid": null + }, + "phone": "202-225-3665", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-02-11", + "state": "NY", + "title": "Rep.", + "title_long": "Representative", + "website": "https://tenney.house.gov" + }, + { + "caucus": null, + "congress_numbers": [ + 117 + ], + "current": true, + "description": "Representative for Louisiana's 5th congressional district", + "district": 5, + "enddate": "2023-01-03", + "extra": { + "address": "1408 Longworth House Office Building Washington DC 20515-1805", + "office": "1408 Longworth House Office Building" + }, + "leadership_title": null, + "party": "Republican", + "person": { + "bioguideid": "L000595", + "birthday": "1981-03-16", + "cspanid": null, + "firstname": "Julia", + "gender": "female", + "gender_label": "Female", + "lastname": "Letlow", + "link": "https://www.govtrack.us/congress/members/julia_letlow/456859", + "middlename": "", + "name": "Rep. Julia Letlow [R-LA5]", + "namemod": "", + "nickname": "", + "osid": null, + "pvsid": null, + "sortname": "Letlow, Julia (Rep.) [R-LA5]", + "twitterid": null, + "youtubeid": null + }, + "phone": "202-225-8490", + "role_type": "representative", + "role_type_label": "Representative", + "senator_class": null, + "senator_rank": null, + "startdate": "2021-04-14", + "state": "LA", + "title": "Rep.", + "title_long": "Representative", + "website": "" + } +] \ No newline at end of file diff --git a/mongodb/source/run_autograder b/mongodb/source/run_autograder new file mode 100644 index 0000000..c0565e0 --- /dev/null +++ b/mongodb/source/run_autograder @@ -0,0 +1,20 @@ +#!/usr/bin/env bash + +mkdir -p /autograder/results/ + +cd /data +mongod > /dev/null 2>&1 & +cd - + +python3 /autograder/source/autograder.py + +# files_submitted=$(ls /autograder/submission) +# num_files_submitted=$(ls /autograder/submission/ | wc -l) + +# cat > /autograder/results/results.json </etc/apt/sources.list.d/mongodb.list +apt update +apt install -y mongodb-org +mkdir -p /data/db +cd /data +python3 -m pip install pymongo diff --git a/mongodb/source/solution.py b/mongodb/source/solution.py new file mode 100644 index 0000000..457cf01 --- /dev/null +++ b/mongodb/source/solution.py @@ -0,0 +1,47 @@ +sols = ['db.bills.find({sponsor_name:"Marco Rubio"}, {_id:0, title: 1, sponsor_name:1, sponsor_state:1})', + 'db.bills.find({cosponsors:{$gte:3, $lte:5}}, {_id:0, title:1, sponsor_name:1, cosponsors:1})', + 'db.bills.find({$or:[{cosponsors:{$gte:3, $lte:5}}, {sponsor_name:"Marco Rubio"}]}, {_id:0, title:1, sponsor_name:1, cosponsors:1})', + '''db.congress.aggregate([ + { $match: {"state": "IN"} }, + { $group: {_id: "$role_type", count_of_this_role: {$sum:1} } }, + { $sort: {count_of_this_role: -1} }, + { $project: {_id: 1, count_of_this_role: 1} } + ])''', + '''db.bills.aggregate([ + { $lookup: { + from: "congress", + localField: "sponsor_id", + foreignField: "person.bioguideid", + as:"congressMember"} }, + { $unwind: "$congressMember" }, + { $project: {_id: 0, title:1, sponsor_name: 1, "description": "$congressMember.description", "DOB": "$congressMember.person.birthday"} } + ])''', + '''db.bills.aggregate([ + { $unwind: "$committee_codes" }, + { $project: {committee_codes: 1} }, + { $group: {_id: "$committee_codes", countOfCommittee: {$sum:1} } }, + { $sort: {countOfCommittee: -1} }, + ])''', + '''db.bills.aggregate([ + { $project: {_id: 1, title:1, sponsor_name: 1, sponsor_state:1}}, + { $lookup: { + from: "bills", + localField: "sponsor_state", + foreignField: "sponsor_state", + as:"otherBills"} }, + { $unwind: "$otherBills" }, + { $project: {title: 1, sponsor_name: 1, sponsor_state: 1, otherbill_id: "$otherBills._id", otherbill_title: "$otherBills.title", otherbill_sponser_name: "$otherBills.sponsor_name", otherbill_sponsor_state: "$otherBills.sponsor_state"}}, + { $match: {$expr: {$lt: ["$_id", "$otherbill_id"]}}} + ])''', + '''db.congress.aggregate([ + { $project: {_id: 1, firstname: "$person.firstname", lastname: "$person.lastname", state: 1}}, + { $lookup: { + from: "congress", + localField: "lastname", + foreignField: "person.lastname", + as:"otherPersons"} }, + { $unwind: "$otherPersons" }, + { $match: {$expr: {$lt: ["$_id", "$otherPersons._id"]}}}, + { $project: {_id:1, firstname: 1, lastname: 1, state:1, otherPerson_id: "$otherPersons._id", otherPerson_firstname: "$otherPersons.person.firstname", otherPerson_lastname: "$otherPersons.person.lastname", otherPerson_state: "$otherPersons.state"}}, + { $match: {$expr: {$eq: ["$state", "$otherPerson_state"]}}}, + ])'''] diff --git a/neo4j/Dockerfile b/neo4j/Dockerfile new file mode 100644 index 0000000..14840ce --- /dev/null +++ b/neo4j/Dockerfile @@ -0,0 +1,26 @@ +# You can change these variables to use a different base image, but +# you must ensure that your base image inherits from one of ours. +# You can also override these at build time with --build-arg flags +ARG BASE_REPO=gradescope/autograder-base +ARG TAG=latest + +FROM ${BASE_REPO}:${TAG} + +ADD source /autograder/source + +RUN cp /autograder/source/run_autograder /autograder/run_autograder + +# Ensure that scripts are Unix-friendly and executable +RUN dos2unix /autograder/run_autograder /autograder/source/setup.sh +RUN chmod +x /autograder/run_autograder + +# Do whatever setup was needed in setup.sh, including installing apt packages +# Cleans up the apt cache afterwards in the same step to keep the image small +RUN apt-get update && \ + bash /autograder/source/setup.sh && \ + apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* + +# You can also use RUN commands in the Dockerfile to install things +# instead of using a bash script + +# The base image defines the CMD and ENTRYPOINT, so don't redefine those diff --git a/neo4j/push.cmd b/neo4j/push.cmd new file mode 100644 index 0000000..4ed030d --- /dev/null +++ b/neo4j/push.cmd @@ -0,0 +1 @@ +docker build -t sunyinqi0508/neo4j_autograder . && docker push sunyinqi0508/neo4j_autograder diff --git a/neo4j/source/Neo4J_dataset.txt b/neo4j/source/Neo4J_dataset.txt new file mode 100644 index 0000000..4b9ce19 --- /dev/null +++ b/neo4j/source/Neo4J_dataset.txt @@ -0,0 +1,47 @@ +CREATE +(gorman:Author {name:"Gorman, Michael"}), +(toner:Author {name:"Toner, Patrick"}), +(koslicki:Author {name:"Koslicki, Kathrin"}), +(fine:Author {name:"Fine, Kit"}), +(roger:Author {name:"Roger, Cat"}), +(beth:Author {name:"Beth, Dog"}), +(art1:Article {doi:"10.5840/ipq20064626", title:"Independence and Substance"}), +(art2:Article {doi:"10.1007/s11098-010-9521-4", title:"Independence Accounts of Substance and Substantial Parts"}), +(art3:Article {doi:"10.1007/s11098-011-9708-3", title:"On Substantial Independence: a Reply to Patrick Toner"}), +(art4:Article {doi:"10.1080/05568640609485174", title:"Substance and Identity-Dependence"}), +(art5:Article {doi:"10.2307/4545221", title:"Ontological Dependence"}), +(art6:Article {doi:"10.2307/4519752", title:"Yet Another Title"}), +(art7:Article {doi:"10.2308/4547590", title:"Seventh Title"}), +(chp1:Chapter {no:9, title:"Substance, Independence, and Unity"}), +(chp2:Chapter {no:10, title:"Chapter on Making Chapters"}), +(ipq:Journal {title:"International Philosophical Quarterly", ISSN:"0019-0365", onlineISSN:"2153-8077"}), +(ps:Journal {title:"Philosophical Studies", ISSN:"0031-8116", onlineISSN:"1573-0883"}), +(pp:Journal {title:"Philosophical Papers", ISSN:"0556-8641", onlineISSN:"1996-8523"}), +(pas:Journal {title:"Proceedings of the Aristotelian Society", ISSN:"0066-7374", onlineISSN:"1467-9264"}), +(hitm:Journal {title:"History in the making", ISSN:"0084-7649", onlineISSN:"1235-7549"}), +(ssj:Journal {title:"Something Something Journal", ISSN:"0420-6729", onlineISSN:"5964-3248"}), +(gorman)-[:WRITES]->(art1)-[:IN {pp:[147,159]} ]->(:Issue {volume:46, issue:2, year:2006, month:6})-[:OF]->(ipq), +(toner)-[:WRITES]->(art2)-[:IN {pp:[37,43]} ]->(:Issue {volume:155, issue:1, year:2011, month:8})-[:OF]->(ps), +(gorman)-[:WRITES]->(art3)-[:IN {pp:[239,297]} ]->(:Issue {volume:159, issue:2, year:2012, month:6})-[:OF]->(ps), +(gorman)-[:WRITES]->(art4)-[:IN {pp:[103,118]} ]->(:Issue {volume:35, issue:1, year:2006, month:3})-[:OF]->(pp), +(fine)-[:WRITES]->(art5)-[:IN {pp:[269,290]} ]->(:Issue {volume:95, year:1995})-[:OF]->(pas), +(roger)-[:WRITES]->(art6)-[:IN {pp:[206,300]} ]->(:Issue {volume:24, year:1996})-[:OF]->(hitm), +(beth)-[:WRITES]->(art7)-[:IN {pp:[0,5]} ]->(:Issue {volume:32, year:1903})-[:OF]->(ssj), +(koslicki)-[:WRITES]->(chp1)-[:IN {pp:[169,195]} ]->(book:Book {title:"Aristotle on Method and Metaphysics", `ISBN-10`:"0230360912", `ISBN-13`:"978-0230360914", year:2013, month:7})<-[:EDITS]-(feser:Author {name:"Feser, Edward"}), +(beth)-[:WRITES]->(chp2)-[:IN {pp:[104,109]} ]->(book2:Book {title:"Book Name is Two", `ISBN-10`:"023546382", `ISBN-13`:"978-0230346584", year:2003, month:9})<-[:EDITS]-(tim:Author {name:"Tim, Bob"}), +(book)<-[:PUBLISHED_BY]-(pub:Publisher {location:"London", name:"Palgrave Macmillan"}), +(book2)<-[:PUBLISHED_BY]-(pub2:Publisher {location:"Madagascar", name:"Alex Lion"}), +(art1)-[:CITES]->(art5), +(art2)-[:CITES]->(art1), +(art2)-[:CITES]->(art4), +(art3)-[:CITES]->(art2), +(art3)-[:CITES]->(art4), +(art5)-[:CITES]->(art6), +(art7)-[:CITES]->(art3), +(art6)-[:CITES]->(art1), +(chp1)-[:CITES]->(art1), +(chp1)-[:CITES]->(art2), +(chp2)-[:CITES]->(art3), +(chp1)-[:CITES]->(art6), +(chp2)-[:CITES]->(art7), +(chp1)-[:CITES]->(art3) \ No newline at end of file diff --git a/neo4j/source/autograder.py b/neo4j/source/autograder.py new file mode 100644 index 0000000..8c1c403 --- /dev/null +++ b/neo4j/source/autograder.py @@ -0,0 +1,70 @@ +import neo4j, json + +# dbprep +fsroot = '/autograder/source/' +datasets = ['Neo4J_dataset'] +db = neo4j.GraphDatabase.driver('bolt://localhost:7687', auth = ('neo4j', '4Sfz541Lm')).session() +def evaluate(query : str): + query = query.strip() + return db.run(query).data() if query else None + +while True: + try: + db.run('RETURN 0') + break + except: + continue + +for d in datasets: + with open(fsroot + d + '.txt', encoding = 'utf-8') as f: + db.run(f.read()) + +from solution import sols +answers = [evaluate(s) if type(s) is str else tuple(evaluate(k) for k in s) for s in sols ] + +# grading +from os import listdir +from importlib.util import module_from_spec, spec_from_file_location +subroot = '/autograder/submission/' +feedback = '' +submissions = [subroot + f for f in listdir(subroot) if f.strip().lower().endswith('.py')] + +grade = 0 +n_queries = len(sols) + +if submissions: + submission = submissions[0] + + for i in range(n_queries): + feedback += f'Query {i + 1}: ' + try: + spec = spec_from_file_location('curr', submission) + module = module_from_spec(spec) + spec.loader.exec_module(module) + q = getattr(module, f'query{i + 1}')() + def eq(a: list, b): + if a is None: return False + if type(b) is tuple: + return any(eq(a, bb) for bb in b) + if len(a) != len(b): return False + return all(aa == bb for aa, bb in zip(a, b)) + + if eq(evaluate(q), answers[i]): + grade += 1 + feedback += 'Correct.\n' + else: + feedback += 'Wrong Answer.\n' + except Exception: + feedback += 'Runtime Error.\n' +else: + feedback += 'No python file in submission.\n' + +# output +results = { + 'output': feedback, + 'score': round(grade * 100 / n_queries, 1), + 'max_score': 100, +} + +with open('/autograder/results/results.json', 'w') as res: + json.dump(results, res) diff --git a/neo4j/source/run_autograder b/neo4j/source/run_autograder new file mode 100644 index 0000000..58b0212 --- /dev/null +++ b/neo4j/source/run_autograder @@ -0,0 +1,18 @@ +#!/usr/bin/env bash + +mkdir -p /autograder/results/ + +service neo4j start + +python3 /autograder/source/autograder.py + +# files_submitted=$(ls /autograder/submission) +# num_files_submitted=$(ls /autograder/submission/ | wc -l) + +# cat > /autograder/results/results.json < /etc/apt/sources.list.d/neo4j.list +apt update +apt install -y neo4j +sed -i '1s/^/server.default_listen_address=0.0.0.0\n/' /etc/neo4j/neo4j.conf +systemctl enable --now neo4j +neo4j-admin dbms set-initial-password 4Sfz541Lm --require-password-change=false + +python3 -m pip install neo4j diff --git a/neo4j/source/solution.py b/neo4j/source/solution.py new file mode 100644 index 0000000..39faab8 --- /dev/null +++ b/neo4j/source/solution.py @@ -0,0 +1,73 @@ +sols = [ + ''' + MATCH (author:Author)-[:WRITES]->(article:Article) + RETURN author.name, article.title + ''', + (''' + match (author:Author)-[:WRITES]->(paper_or_chapter) + return author.name, paper_or_chapter.title, labels(paper_or_chapter) + ''', + ''' + MATCH (author:Author)-[:WRITES]->(paper_or_chapter) + WITH author, paper_or_chapter, labels(paper_or_chapter) as publicationType + WHERE publicationType=["Article"] or publicationType=["Chapter"] + RETURN author.name, paper_or_chapter.title, publicationType + '''), + (''' + match (author:Author)-[:WRITES|EDITS]->(publication) + return author.name, publication.title, labels(publication) + ''', + ''' + MATCH (author:Author)-[]->(publication) + WHERE publication:Article or publication:Chapter or publication:Book + RETURN author.name, publication.title, labels(publication) + '''), + (''' + match (author:Author)-[:WRITES|EDITS]->(publication) + return author.name, count(publication) as publication_count + ''', + ''' + MATCH (author:Author)-[]->(publication) + WHERE publication:Article OR publication:Chapter or publication:Book + RETURN author.name, count(publication) as publication_count + '''), + (''' + match(a:Article)-[in:IN]->(:Issue) + where (in.pp[1] - in.pp[0]) <= 10 + return a.title, (in.pp[1] - in.pp[0] + 1) as NumberOfPages + ''', + ''' + MATCH (a:Article)-[e:IN]->(:Issue) + WITH a, e.pp[1]-e.pp[0]+1 as NumberOfPages + WHERE NumberOfPages <=10 + RETURN a.title, NumberOfPages + '''), + ''' + MATCH (p2:Article)<-[]-(a1:Author)-[]->(p1:Article),(p1)-[:CITES]->(p2) + RETURN a1.name, p1.title, p2.title + ''', + ''' + MATCH (publication)<-[:CITES]-() + WITH publication, count(*) as publication_count + WHERE (publication:Article or publication:Chapter) and publication_count >= 2 + RETURN publication.title, publication_count + ''', + (''' + match (journal:Journal)<-[:OF]-(issue:Issue)<-[:IN]-(article:Article)<-[:CITES]-(someOtherPublication) + with journal, article, count(someOtherPublication) as citations_count + where citations_count > 1 + match (article)<-[:WRITES]-(author:Author) + return journal.title, article.title, citations_count, author.name + ''', + ''' + MATCH (author:Author)-[:WRITES]->(article:Article)-[:IN]->()-[]->(journal:Journal), ()-[e:CITES]->(article:Article) + WITH journal, article, author, count(e) as citation_count + WHERE citation_count >= 2 + RETURN journal.title, article.title, citation_count, author.name + '''), + ''' + MATCH (a1:Article)-[:IN]->(i1:Issue)-[]->(:Journal)<-[]-(i2:Issue)<-[]-(a2:Article) + WHERE (a1)-[:CITES]->(a2) + RETURN a1.title, i1.issue, a2.title, i2.issue + ''' +]